forked from MrOlm/drep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 898 Bytes
/
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
from setuptools import setup, find_packages
import os
def version():
setupDir = os.path.dirname(os.path.realpath(__file__))
versionFile = open(os.path.join(setupDir, 'drep', 'VERSION'))
return versionFile.read().strip()
setup(name='drep',
version=version(),
description='De-replication of microbial genomes assembled from multiple samples',
url='https://github.com/MrOlm/drep',
author='Matt Olm',
author_email='[email protected]',
license='MIT',
package_data={'drep': ['VERSION']},
packages=find_packages(),
scripts=['bin/dRep', 'helper_scripts/parse_stb.py', 'helper_scripts/ScaffoldLevel_dRep.py'],
install_requires=[
'numpy',
'pandas',
'seaborn',
'matplotlib',
'biopython',
'scikit-learn',
'tqdm',
'pytest'
],
zip_safe=False)