-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·41 lines (39 loc) · 1.1 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
import re
import os
from setuptools import setup
version = None
for line in open('./PyExp/__init__.py'):
m = re.search('__version__\s*=\s*(.*)', line)
if m:
version = m.group(1).strip()[1:-1] # quotes
break
assert version
setup(
name='PyExp',
version=version,
author='Aleksey Komissarov',
author_email='[email protected]',
packages=['PyExp'],
package_data={
'': ['README.md']
},
include_package_data=True,
scripts=[],
url='http://github.com/ad3002/PyExp',
license='BSD',
description='A microframework for small computational experiments.',
install_requires=[
'pyyaml >= 3.0',
'simplejson >= 1.0',
'logbook >= 0.7',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)