-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
52 lines (49 loc) · 1.78 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
import setuptools
# Use the readme file as the long description on PyPi
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='iridauploader',
version='0.9.2',
description='IRIDA uploader: upload NGS data to IRIDA system',
url='https://github.com/phac-nml/irida-uploader',
author='Jeffrey Thiessen',
author_email='jeffrey.thiessen@canada.ca',
long_description=long_description,
long_description_content_type="text/markdown",
# license specified on github
license='Apache-2.0',
keywords="IRIDA NGS uploader",
packages=setuptools.find_packages(include=['iridauploader',
'iridauploader.*',
]),
install_requires=['rauth',
'requests',
'chardet',
'appdirs',
'cerberus',
'argparse',
'requests-toolbelt',
],
extras_require={
"GUI": ["PyQt5==5.15.2", "PyQt5-stubs==5.14.2.2"],
"TEST": ["pytest", "coverage"],
"WINDOWS": ["pynsist"],
},
entry_points={
'console_scripts': [
'irida-uploader=iridauploader.core.cli:main',
'irida-uploader-gui=iridauploader.gui.gui:main [GUI]',
'integration-test=iridauploader.tests_integration.start_integration_tests:main [TEST]'
],
},
# https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
include_package_data=True,
# urllib3 v2.0 requires >=3.7
python_requires='>=3.7',
)