-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 754 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 754 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
from setuptools import setup
import os
def version():
setupDir = os.path.dirname(os.path.realpath(__file__))
versionFile = open(os.path.join(setupDir, 'tRep', 'VERSION'))
return versionFile.read().strip()
setup(name='taxRep',
version=version(),
description='Taxonomy of microbial genomes',
url='https://github.com/MrOlm/tRep',
author='Matt Olm',
author_email='mattolm@berkeley.edu',
license='MIT',
package_data={'tRep': ['VERSION']},
packages=['tRep'],
scripts=['bin/quickTaxonomy_centrifuge.py', 'bin/make_Tdb.py',\
'bin/tax_collector.py', 'bin/functional_tax.py'],
install_requires=[
'pandas',
'ete3',
'drep'
],
zip_safe=False)