forked from azvoleff/pyabm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (36 loc) · 1.48 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/python
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name = 'pyabm',
version = '0.4dev',
packages = ['pyabm'],
package_dir = {'pyabm' : 'pyabm'},
package_data = {'pyabm' : ['rcparams.default',
'pyabmrc.windows',
'pyabmrc.linux']},
zip_safe = True,
install_requires = ['numpy >= 1.7.0',
'matplotlib >= 0.98.4'],
extras_require = {'gdal' : ['GDAL >= 1.6']},
author = 'Alex Zvoleff',
author_email = 'azvoleff@conservation.org',
description = 'Agent-based modeling toolkit',
keywords = 'agent-based modeling ABM simulation model',
license = 'GPL v3 or later',
url = 'http://www.azvoleff.com/research/pyabm', # project home page, if any
long_description = ''.join(open('README.rst').readlines()[6:]),
classifiers = [
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Life',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules']
)