-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
69 lines (60 loc) · 1.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python3
import os
from distutils.core import setup
from setuptools import find_packages
from genomic_address_service.version import __version__
author = 'James Robertson'
classifiers = """
Development Status :: 4 - Beta
Environment :: Console
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Operating System :: POSIX :: Linux
""".strip().split('\n')
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
exec(open('genomic_address_service/version.py').read())
setup(
name='genomic_address_service',
include_package_data=True,
version=__version__,
python_requires='>=3.10.0,<3.13.0',
setup_requires=['pytest-runner'],
tests_require=['pytest'],
packages=find_packages(exclude=['tests']),
url='https://github.com/phac-nml/genomic_address_service',
license='GPLv3',
author='James Robertson',
author_email='[email protected]',
description=(
'Genomic Address Service: De novo clustering and cluster address assignment'),
keywords='cgMLST, wgMLST, outbreak, surveillance, clustering, nomenclature',
classifiers=classifiers,
package_dir={'gas': 'genomic_address_service'},
package_data={
"": ["*.txt"],
},
install_requires=[
'pyarrow>=14.0.0',
'numba==0.59.1',
'numpy==1.26.4',
'tables==3.9.1',
'six>=1.16.0',
'pandas==2.0.2 ',
'pytest==8.3.3',
'scipy==1.14.1',
'psutil==6.1.0',
'fastparquet==2023.4.0' #Will drop support of fastparquet in future versions
],
entry_points={
'console_scripts': [
'gas=genomic_address_service.main:main',
],
},
)