-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
50 lines (49 loc) · 1.22 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
50
from setuptools import setup
from simobility import __version__
setup(
name="simobility",
description="Lightweight mobility simulation for quick algorithm prototyping",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author="Oleksandr Lysenko",
author_email="sashkolysenko@gmail.com",
version=__version__,
license="MIT",
url="https://github.com/sash-ko/simobility",
download_url="https://github.com/sash-ko/simobility/archive/v0.4.0.tar.gz",
packages=[
"simobility",
"simobility.core",
"simobility.routers",
"simobility.simulator",
],
python_requires=">=3.7.*",
install_requires=[
"pandas>=0.24.1",
"scipy>=1.2.1",
"haversine",
"geojson",
"transitions",
"geopandas",
"shapely",
"requests",
"pyarrow",
"pyyaml",
"h3"
],
extras_require={
"dev": [
"ipdb",
"jupyter",
"jupyterlab",
"flake8",
"nose",
"coverage",
"pytest",
"pip-tools",
"pytest-cov",
"pre-commit"
]
},
zip_safe=False,
)