forked from Ecogenomics/GTDBTk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (37 loc) · 1.74 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
#!/usr/bin/env python
from setuptools import setup
import os
def version():
setupDir = os.path.dirname(os.path.realpath(__file__))
versionFile = open(os.path.join(setupDir, 'gtdbtk', 'VERSION'))
return versionFile.readline().strip()
setup(
name='gtdbtk',
version=version(),
author='Pierre-Alain Chaumeil and Donovan Parks',
author_email='[email protected]',
maintainer='Pierre-Alain Chaumeil and Donovan Parks',
maintainer_email='[email protected]',
packages=['gtdbtk','gtdbtk.config','gtdbtk.external','gtdbtk.external.Bio.Pfam.Active_site','gtdbtk.external.Bio.Pfam.HMM','gtdbtk.external.Bio.Pfam.Scan'],
scripts=['bin/gtdbtk'],
package_data={'gtdbtk': ['VERSION','MANIFEST.in'],
'gtdbtk.external': ['pfam_search.pl'],
'gtdbtk.external.Bio.Pfam.Active_site':['as_search.pm'],
'gtdbtk.external.Bio.Pfam.HMM':['HMM.pm','HMMIO.pm','HMMMatch.pm','HMMResults.pm','HMMResultsIO.pm','HMMSequence.pm','HMMUnit.pm'],
'gtdbtk.external.Bio.Pfam.Scan':['PfamScan.pm','Seq.pm'],
},
url='http://pypi.python.org/pypi/gtdbtk/',
license='GPL3',
description='A toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes.',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
install_requires=["biolib >= 0.0.43",
"jinja2>=2.7.3",
"mpld3>=0.2",
"dendropy>=4.1.0"],
)