forked from ahellander/pyurdme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (16 loc) · 850 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
from setuptools import setup
setup(name="pyurdme",
version="1.1.1",
packages=['pyurdme'],
#include_package_data = True,
package_data={'pyurdme':['data/*.c','data/three.js_templates/js/*','data/three.js_templates/*.html','urdme/AUTHORS','urdme/LICENCE','urdme/bin/*','urdme/build/*','urdme/include/*','urdme/src/*.c','urdme/src/nsm/*']},
install_requires = ["numpy",
"scipy",
"h5py"],
author="Andreas Hellander, Brian Drawert",
author_email=["[email protected]", "[email protected]"],
license = "GPL",
keywords = "pyurdme, urdme, spatial stochastic simulation, RDME",
url = "http://www.pyurdme.org",
download_url = "https://github.com/pyurdme/pyurdme/tarball/master/v1.1.1"
)