-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (27 loc) · 1.01 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
#!/usr/bin/env python
from distutils.core import setup
def get_version():
"""
Read the file to get current version
"""
for line in open("BGClib/BGClib.py", "r"):
if line.startswith('__version__'):
return line.split("=")[-1].strip().strip('"')
return ""
setup(name='BGClib',
python_requires='>=3.5',
version=get_version(),
description='Biosynthetic Gene Cluster library utilities',
author='Jorge Navarro',
author_email='[email protected]',
packages=['BGClib'],
package_data={'BGClib': ['data/*.tsv', 'data/Domain_models/*', '../BGCtoolkit.py']},
keywords=['secondary metabolites', 'natural products', 'genome mining'],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
)