-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
57 lines (52 loc) · 1.81 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
from setuptools import setup
import sys
__author__ = "Gavin Huttley"
__copyright__ = "Copyright 2019, Gavin Huttley"
__credits__ = ["Gavin Huttley"]
__license__ = "BSD"
__version__ = "0.11"
__maintainer__ = "Gavin Huttley"
__email__ = "Gavin.Huttley@anu.edu.au"
__status__ = "Development"
# Check Python version, no point installing if unsupported version inplace
if sys.version_info < (3, 6):
py_version = ".".join([str(n) for n in sys.version_info])
raise RuntimeError("Python-3.6 or greater is required, Python-%s used." % py_version)
short_description = "homologsampler"
# This ends up displayed by the installer
long_description = """homologsampler
Download homolog's from the Ensembl database
"""
setup(
name="homologsampler",
version=__version__,
author="Gavin Huttley",
author_email="gavin.huttley@anu.edu.au",
description=short_description,
long_description=long_description,
platforms=["any"],
license=["GPL"],
keywords=["science", "bioinformatics", "genetics", "evolution"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
],
packages=['homologsampler'],
install_requires=[
'cogent3',
'ensembldb3',
'scitrack',
'click',
],
entry_points={
'console_scripts': ['homolog_sampler=homologsampler.__init__:cli',
],
},
url="https://github.com/cogent3/homologsampler",
extras_require={"mysql": ["PyMySQL", "sqlalchemy"]},
)