-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (23 loc) · 900 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
import os
from distutils.core import setup
def version():
setupDir = os.path.dirname(os.path.realpath(__file__))
versionFile = open(os.path.join(setupDir, 'gtdb_species_clusters', 'VERSION'))
return versionFile.readline().strip()
setup(
name='gtdb_species_clusters',
version=version(),
python_requires='>=3.6',
author='Donovan Parks',
author_email='[email protected]',
packages=['gtdb_species_clusters'],
scripts=['bin/gtdb_species_clusters'],
package_data={'gtdb_species_clusters': ['VERSION']},
url='https://github.com/Ecogenomics/gtdb-species-clusters',
license='GPL3',
description='This toolkit provides functionality for establishing, updating, and validating the species clusters used in the Genome Taxonomy Database.',
install_requires=[
"numpy >= 1.8.0",
"biolib >= 0.1.0",
"dendropy >= 4.0.0"],
)