-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (44 loc) · 1.35 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
#!/usr/bin/env python
from __future__ import division
from setuptools import setup
from glob import glob
import ast
import re
__author__ = "The Clemente Lab"
__copyright__ = "Copyright 2020, The Clemente Lab"
__credits__ = ["Jose C. Clemente, Kevin Bu"]
__license__ = "GPL"
__maintainer__ = "Kevin Bu"
__email__ = "[email protected]"
# https://github.com/mitsuhiko/flask/blob/master/setup.py
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('cutie/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
setup(name='cutie',
version=version,
description='Correlations under the influence',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3.7.3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
url='http://github.com/clemente-lab/CUTIE',
author=__author__,
author_email=__email__,
license=__license__,
packages=['cutie'],
scripts=glob('scripts/*py'),
install_requires=[
'click',
'numpy',
'pandas',
'statsmodels',
'scipy',
'matplotlib',
'seaborn',
'py',
'pytest'
],
zip_safe=False)