forked from jonathf/chaospy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 681 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 681 Bytes
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 setuptools import setup, find_packages
setup(
name='chaospy',
version="2.3.2",
url='https://github.com/jonathf/chaospy',
author="Jonathan Feinberg",
author_email="jonathf@gmail.com",
license='BSD',
platforms='any',
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=[
"numpy", "scipy", "networkx"
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
],
)