forked from clopezx/earm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (22 loc) · 778 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
def main():
setup(name='earm',
version='1.0',
description='Extrinsic Apoptosis Reaction Model',
author='?',
author_email='?',
packages=['earm'],
requires=['pysb'],
keywords=['systems', 'biology', 'model', 'rules'],
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Mathematics',
],
)
if __name__ == '__main__':
main()