-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 889 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
26
27
28
from setuptools import setup
setup(name="gspn",
version="0.1",
description="Discrete stochastic processes in continuous time",
long_description="""These classes implement a basic discrete
event simulation in continuous time.
""",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.4",
"Topic :: Scientific/Engineering :: Mathematics"
],
keywords="stochastic dynamic simulation Markov Gillespie",
url="http://github.com/adolgert/PyGSPN",
author="Drew Dolgert",
author_email="[email protected]",
license="BSD 3-clause",
packages=["gspn"],
install_requires=[
"numpy",
"scipy"
],
include_package_date=True,
zip_safe=False)