-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
70 lines (61 loc) · 1.9 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
70
#!/usr/bin/env python3
import os
from distutils.core import setup
from setuptools import find_packages
from arborator.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('arborator/version.py').read())
setup(
name='arborator',
include_package_data=True,
version=__version__,
python_requires='>=3.8.2,<3.10',
setup_requires=['pytest-runner'],
tests_require=['pytest'],
packages=find_packages(exclude=['tests']),
url='https://github.com/phac-nml/arborator',
license='GPLv3',
author='James Robertson',
author_email='james.robertson@phac-aspc.gc.ca',
description=(
'Arborator: Simplifying operationalized pathogen surveillance and outbreak detection'),
keywords='cgMLST, wgMLST, outbreak, surveillance, clustering, distance matrix',
classifiers=classifiers,
package_dir={'arborator': 'arborator'},
package_data={
"": ["*.tsv","*.json"],
},
install_requires=[
'pyarrow==12.0.0',
'fastparquet==2023.4.0',
'numba==0.57.1',
'numpy==1.24.4',
'tables==3.8.0',
'six>=1.16.0',
'pandas==2.0.2 ',
'psutil',
'scipy',
'profile_dists',
'genomic_address_service'
],
entry_points={
'console_scripts': [
'arborator=arborator.main:main',
],
},
)