-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
75 lines (63 loc) · 1.93 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
from setuptools import setup, find_packages
import re
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
]
keywords = [
'genomics',
'bioinformatics',
'visualization',
'Jupyter',
]
def get_version():
with open("coolbox/__init__.py") as f:
for line in f.readlines():
m = re.match("__version__ = '([^']+)'", line)
if m:
return m.group(1)
raise IOError("Version information can not found.")
def get_long_description():
return "See https://github.com/GangCaoLab/CoolBox"
def get_install_requires():
requirements = []
with open('requirements.txt') as f:
for line in f:
requirements.append(line.strip())
return requirements
setup(
name='coolbox',
author='Weize Xu',
author_email='[email protected]',
version=get_version(),
license='GPLv3',
description='Jupyter notebook based genomic data visulization toolkit.',
long_description=get_long_description(),
keywords=keywords,
url='https://github.com/GangCaoLab/CoolBox',
packages=find_packages(),
scripts=['scripts/coolbox'],
include_package_data=True,
zip_safe=False,
classifiers=classifiers,
install_requires=get_install_requires(),
extras_requires={
"doc": [
"sphinx_rtd_theme",
"autodocsumm",
"recommonmark",
"nbsphinx",
"sphinx_gallery",
]
},
python_requires='>=3.7, <4',
)