forked from projectmesa/mesa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating w/ readme format updates and pypi setup updates.
- Loading branch information
1 parent
7164fd3
commit 33ec36f
Showing
2 changed files
with
18 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,17 @@ | |
# -*- coding: utf-8 -*- | ||
|
||
from setuptools import setup | ||
from codecs import open | ||
|
||
requires = [ | ||
'tornado', | ||
'numpy', | ||
'pandas', | ||
] | ||
|
||
with open('README.rst', 'r', encoding='utf-8') as f: | ||
readme = f.read() | ||
|
||
# TODO: Rewrite Readme and pull that it instead. | ||
description = """ | ||
Mesa is an agent-based modeling (or ABM) framework in Python. It allows | ||
|
@@ -17,20 +21,18 @@ | |
implementations; visualize them using a browser-based interface; and | ||
analyze their results using Python's data analysis tools. It's goal is | ||
to be the Python 3-based alternative to NetLogo, Repast, or MASON. | ||
Mesa is being developed by a group of modeling practitioners with | ||
experience in academia, government, and the private sector. | ||
""" | ||
|
||
setup( | ||
name='Mesa', | ||
version='0.6.2', | ||
description=description, | ||
description="Mesa: Agent-based modeling in Python 3+", | ||
long_description=readme, | ||
author='Project Mesa Team', | ||
author_email='[email protected]', | ||
url='https://github.com/projectmesa/mesa', | ||
packages=['mesa'], | ||
package_data={'': ['LICENSE.md', ], }, | ||
package_data={'': ['LICENSE', ], }, | ||
package_dir={'mesa': 'mesa'}, | ||
include_package_data=True, | ||
install_requires=requires, | ||
|