-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.02 KB
/
setup.py
File metadata and controls
38 lines (37 loc) · 1.02 KB
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
from setuptools import setup, find_packages
setup(
name="instancemaker",
version="0.2.0",
description="For labeling and polygonizing semantic predictions of field " \
"boundaries",
author="Lyndon Estes, Nguyen Ha, and Wanjing Li",
author_email="lestes@clarku.edu",
url="https://github.com/agroimpacts/instancemaker",
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
install_requires=[
"numpy",
"xarray",
"rioxarray",
"scipy",
"shapely",
"scikit-image",
"geopandas",
"matplotlib",
"pyyaml",
"leafmap",
"localtileserver",
"jupyterlab"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
], entry_points={
'console_scripts': [
'instancemaker = instancemaker.cli:cli',
],
},
python_requires=">=3.7",
)