-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (44 loc) · 1.56 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
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
from setuptools import setup, find_packages
from codecs import open
requires = ["mesa >= 0.8.6", "mesa-geo",
"geopandas", "matplotlib", "coloredlogs","contextily","lxml",
"shapely", "descartes"]
version = ""
with open("iper/__init__.py", "r") as fd:
version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE
).group(1)
with open("README.md", "r") as f:
readme = f.read()
setup(
name="iper",
version=version,
description="Social simulator and policy explorer",
long_description=readme,
long_description_content_type="text/markdown",
author="Mario Ceresa, BCNMedTech",
author_email="[email protected]",
url="https://github.com/bcn-medtech/iper-social-simulations",
packages=find_packages(),
package_data={
},
include_package_data=False,
install_requires=requires,
keywords="agent based modeling model ABM social simulation multi-agent policy explorer reinforcement learning ",
license="Apache 2.0",
zip_safe=False,
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 :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
),
)