-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
42 lines (40 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
from setuptools import setup
from codecs import open
with open("README.md") as f:
long_description = f.read()
setup(
name="buildmap",
version="2.0",
description="A GIS workflow pipeline for designing festivals",
long_description=long_description,
long_description_content_type="text/markdown",
license="GPL",
author="Russ Garrett",
author_email="[email protected]",
url="https://github.com/emfcamp/buildmap",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
keywords="gis postgis",
python_requires=">=3.5",
packages=["buildmap", "buildmap.exporter", "buildmap.plugins"],
install_requires=[
"jinja2",
"gunicorn",
"sqlalchemy <2.0",
"shapely",
"pyyaml",
"argparse",
"psycopg2",
"toml",
"pydotplus",
"mergedeep==1.3.4",
"pint==0.18",
"reportlab",
"pylabels",
"requests==2.31.0",
],
entry_points={"console_scripts": {"buildmap=buildmap.main:run"}},
)