forked from SDXorg/pysd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (31 loc) · 985 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
29
30
31
32
33
34
35
36
from __future__ import print_function
from distutils.core import setup
exec(open('pysd/_version.py').read())
print(__version__)
long_description ="""Project Documentation: http://pysd.readthedocs.org/"""
setup(
name='pysd',
version=__version__,
author='James Houghton',
author_email='[email protected]',
packages=['pysd'],
url='https://github.com/JamesPHoughton/pysd',
license='LICENSE.txt',
description='System Dynamics Modeling in Python',
long_description=long_description,
keywords=['System Dynamics', 'Vensim'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Intended Audience :: Science/Research',
],
install_requires=[
'pandas',
'numpy',
'parsimonious',
'yapf',
'xarray'
]
)