-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·44 lines (36 loc) · 1.41 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
#!/usr/bin/python3
import re
from setuptools import setup
def find_version():
with open('SAGA_optimize.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
setup(
name='SAGA_optimize',
install_requires=['jsonpickle >= 0.9.5'],
author='Huan Jin',
author_email='[email protected]',
description='Optimization method for solving boundary-value inverse problem based on a combined simulated annealing and genetic algorithm',
keywords="optimization inverse problem simulated annealing genetic algorithm",
license='BSD',
url='https://github.com/MoseleyBioinformaticsLab/SAGA_optimize.git',
py_modules=['SAGA_optimize'],
version=find_version(),
platforms='any',
long_description=open('README.rst').read(),
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.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)