-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.09 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
from setuptools import setup, find_packages
setup(
name="building2parcel_trainingdata",
version="0.3.2",
author="Dezeng Kong",
author_email="[email protected]",
description="A package for mapping parcels and buildings using various data sources",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/scalable-design-participation-lab/building2parcel-trainingdata.git",
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=[
"matplotlib",
"cartopy",
"geopandas",
"python-dotenv",
"Pillow",
"numpy",
"owslib",
"tqdm",
"pandas",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
entry_points={
'console_scripts': [
'building2parcel_trainingdata=building2parcel_trainingdata.building2parcel_trainingdata:main',
],
},
)