-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 989 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
from setuptools import setup, find_packages
setup(name = 'gillespie',
version = '0.1',
description = 'Gillespie Stochastic Simulation Algorithm Library',
url = 'https://github.com/lillux/gillespie_ssa',
author = 'Calogero Carlino',
author_email = 'calogero.carlino28@gmail.com',
license = 'GPLv3',
zip_safe=False,
install_requires=['numpy>=1.18.1',
'matplotlib'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
packages=find_packages())