forked from projectmesa/mesa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 852 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
#!/usr/bin/env python
from setuptools import setup
requires = [
'tornado',
'numpy',
'pandas',
]
setup(
name='Mesa',
version='0.5.1',
description='Agent-based modeling framework in Python.',
author='Project Mesa Team',
author_email='[email protected]',
url='https://github.com/projectmesa/mesa',
packages=['mesa'],
package_data={'': ['LICENSE.md', ], },
package_dir={'mesa': 'mesa'},
include_package_data=True,
install_requires=requires,
license='MIT',
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3 :: Only',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
],
)