-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (45 loc) · 1.12 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
from os import path
import versioneer
PACKAGE_NAME = 'pyqttoolkit'
_here = path.abspath(path.dirname(__file__))
with open(path.join(_here, 'README.md')) as fp:
README_CONTENTS = fp.read()
install_requires = [
'matplotlib',
'jinja2',
'pandas',
'appdirs'
]
tests_require = [
'tox',
'pytest',
'pytest-cov',
'pytest-xvfb',
'pytest-asyncio',
'pytest-qt',
'licensify'
]
extras_require = {
'test': tests_require,
'publish': ['twine'],
'ui': ['pyqt5']
}
setup(
name=PACKAGE_NAME,
install_requires=install_requires,
tests_require=tests_require,
extras_require=extras_require,
packages=find_packages(exclude=('tests*',)),
cmdclass=versioneer.get_cmdclass(),
license='GPLv3',
version=versioneer.get_version(),
author='Bitbloom Ltd',
author_email='[email protected]',
url='https://github.com/BitBloomTech/pyqttoolkit',
platforms='any',
description='A toolkit for PyQt 5',
long_description=README_CONTENTS,
long_description_content_type='text/markdown',
python_requires='>=3.6'
)