-
Notifications
You must be signed in to change notification settings - Fork 89
/
setup.py
executable file
·37 lines (34 loc) · 1.22 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
from setuptools import setup, find_packages
exec(open('pysd/_version.py').read())
print(__version__)
setup(
name='pysd',
version=__version__,
python_requires='>=3.9',
author='PySD contributors',
packages=find_packages(exclude=['docs', 'tests', 'dist', 'build']),
url='https://github.com/SDXorg/pysd',
license='LICENSE',
description='System Dynamics Modeling in Python',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
keywords=['System Dynamics', 'Vensim', 'XMILE'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
install_requires=open('requirements.txt').read().strip().split('\n'),
package_data={
'translators': [
'*/parsing_grammars/*.peg'
]
},
include_package_data=True
)