forked from SDXorg/pysd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·49 lines (45 loc) · 1.31 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
from __future__ import print_function
from setuptools import setup, find_packages
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='james.p.houghton@gmail.com',
packages=find_packages(exclude=['docs', 'tests', 'dist', 'build']),
url='https://github.com/JamesPHoughton/pysd',
license='LICENSE.txt',
description='System Dynamics Modeling in Python',
long_description=long_description,
keywords=['System Dynamics', 'Vensim', 'XMILE'],
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',
'lxml',
'xlwt',
'funcsigs',
'pydoe',
'xlrd',
'regex',
'chardet'
],
package_data={
'py_backend': [
'output_style.yapf',
'xmile/smile.grammar'
]
},
include_package_data=True
)