forked from compbiocore/refchef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.33 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
import setuptools
import re
with open("README.rst", "r") as fh:
long_description = fh.read()
with open('refchef/__init__.py', 'r') as fd:
version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(),
re.MULTILINE
).group(1)
setuptools.setup(
name="refchef",
version=version,
author="Andrew Leith & Fernando Gelin",
author_email="[email protected]",
description="Genome reference manager.",
long_description=long_description,
url="https://github.com/compbiocore/refchef",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS",
"Operating System :: Unix"
],
install_requires=[
"argparse",
"flask",
"python-dotenv",
"oyaml",
"pygithub",
"yamlloader",
"pandas",
"terminaltables",
"mock",
"future",
"configparser",
"pytest>=3.6",
"coverage>=4.4",
"pytest-cov>=2.0"
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
scripts=["scripts/refchef-cook", "scripts/refchef-menu", "scripts/refchef-serve"]
)