-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (44 loc) · 1.51 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
import setuptools
from irida_staramr_results.version import __version__
# Use the readme file as the long description on PyPi
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='irida-staramr-results',
version=__version__,
description='IRIDA StarAMR Results program enables StarAMR analysis results that were run through IRIDA to be batch '
'downloaded into a collection of spreadsheets using the command line.',
author='Marielle Manlulu',
author_email='[email protected]',
url='https://github.com/phac-nml/irida-staramr-results',
long_description=long_description,
long_description_content_type="text/markdown",
license = 'Apache-2.0',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: Apache Software License",
],
install_requires=[
"rauth",
"requests",
"setuptools",
"pyyaml",
"pandas",
"openpyxl",
"xlsxwriter",
"python-dateutil"
],
packages=setuptools.find_packages(),
include_package_data=True,
entry_points = {
'console_scripts': [
'irida-staramr-results = irida_staramr_results.cli:main'
]
}
)