-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·45 lines (43 loc) · 1.31 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='tb2neo',
version='0.0.9',
url='https://github.com/COMBAT-TB/tb2neo',
description='Builds a M.tb annotation graph database from GFF files',
long_description=long_description,
long_description_content_type="text/markdown",
keywords='tuberculosis, neo4j, bioservices, gff',
license="GPLv3",
py_modules=['tb2neo'],
packages=find_packages(),
include_package_data=True,
package_data={
'tb2neo': ['data/drugbank/*.csv', 'data/string/*.txt',
'data/uniprot/*.csv', 'data/tbdtdb/*.txt',
'data/mutations/*.csv', 'data/mutations/*.txt'
],
},
python_requires='~=3.6',
install_requires=[
'click',
'py2neo==3.1.2',
'bioservices',
'bcbio-gff',
'biopython',
'beautifulsoup4',
'combattbmodel'
],
dependency_links=[
'https://test.pypi.org/simple/',
],
entry_points={
'console_scripts': ['tb2neo=tb2neo.cli:cli']
},
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)