-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (40 loc) · 968 Bytes
/
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
from setuptools import find_packages, setup
setup(
name="planbelt",
version="0.5.2",
packages=find_packages(),
include_package_data=True,
install_requires=[
"Click",
"geopandas",
"pg-data-etl @ git+https://github.com/mmorley0395/pg-data-etl",
"python-dotenv",
"sqlalchemy",
"backports.functools-lru-cache",
"brotli",
"folium",
"geoalchemy2",
"geopandas",
"ipykernel",
"mapclassify",
"matplotlib",
"munch",
"munkres",
"openpyxl",
"pooch",
"psycopg2-binary",
"pysocks",
"python-dotenv",
"rtree",
"ukkonen",
"xlsxwriter",
"xyzservices",
],
entry_points={
"console_scripts": [
"conflate = plan_belt.cli:conflation",
"synchrosum = plan_belt.cli:synchro",
"synchrosim = plan_belt.cli:sim",
]
},
)