-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 851 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 851 Bytes
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
from setuptools import setup, find_packages
setup(
name="datafunk",
version="0.1.1",
packages=find_packages(),
package_data={'datafunk':['datafunk/resources/*']},
include_package_data=True,
url="https://github.com/cov-ert/datafunk",
license="MIT",
entry_points={"console_scripts": ["datafunk = datafunk.__main__:main"]},
test_suite="nose.collector",
tests_require=["nose >= 1.3"],
install_requires=[
"biopython>=1.70",
"pandas>=0.25.0",
"pycountry",
"pysam>=0.17.0",
"datapackage",
"epiweeks",
"unidecode",
],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
],
)