-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (33 loc) · 1.4 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
from setuptools import setup, find_packages
from codecs import open
#get the readme file for the long description below--optional
with open('README.md', 'rb', encoding='utf-8') as f:
readme = f.read()
# see https://github.com/pypa/sampleproject/blob/master/setup.py for explanation of each parameter and links
setup(
name='multilevel_mesa',
version='0.0.1',
description="Provides Extension module to Mesa to allow for Heirarhcies and Modules of Agents",
long_description=readme,
url='https://github.com/tpike3/ml_mesa',
author='Tom Pike',
author_email='tpike3@gmu.edu',
classifiers=[
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Life',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 2 - Pre-Alpha',
'Natural Language :: English',
],
keywords='agent based modeling model ABM simulation multi-agent coaltion game theory',
packages = ["multilevel_mesa"],
#for more elaborate projects with directories of files such as tests etc
install_requires=['networkx', "mesa"]
)