-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·52 lines (43 loc) · 1.39 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
#!/usr/bin/python3
import re
from setuptools import setup, find_packages
def find_version():
with open('moiety_modeling/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)
if not version:
raise RuntimeError('Cannot find version information')
return version
REQUIRES = [
"docopt",
"jsonpickle",
"matplotlib",
"numpy",
"SAGA-optimize",
"scipy"
]
setup(
name='moiety_modeling',
version=find_version(),
packages=find_packages(),
license="The Clear BSD License",
author="Huan Jin",
author_email="[email protected]",
description="Moiety Modeling Implementation",
keywords="moiety modeling model optimization model selection",
url="https://github.com/MoseleyBioinformaticsLab/moiety_modeling.git",
install_requires=REQUIRES,
long_description=open('README.rst').read(),
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)