-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
56 lines (54 loc) · 1.11 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
51
52
53
54
55
56
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="dpd",
version="0.72",
description="A Python Transportation Toolkit",
author="David Bailey",
author_email="[email protected]",
url="https://github.com/davidbailey/dpd",
packages=find_packages(),
license="MIT License",
install_requires=[
"astropy",
"bs4",
"contextily",
"flask",
"folium",
"forex_python",
"geojsoncontour",
"geonetworkx",
"geopandas",
"gtfs_kit",
"h3",
"haversine",
"ipfn",
"ipywidgets",
"lonboard",
"mapclassify",
"matplotlib",
"mesa",
"mesa-geo",
"movingpandas",
"networkx",
"numpy",
"pandas",
"pyrosm",
"pyproj",
"requests",
"shapely",
"tobler",
"us",
"werkzeug",
],
tests_requires=[
"bandit",
"black",
"black[jupyter]",
"coveralls",
"flake8",
"isort",
"pytest",
"pytest-cov",
],
)