forked from PatBall1/detectree2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 968 Bytes
/
setup.py
File metadata and controls
34 lines (33 loc) · 968 Bytes
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
from setuptools import find_packages, setup
setup(
name="detectree2",
version="2.1.1",
author="James G. C. Ball",
author_email="ball.jgc@gmail.com",
description="Detectree packaging",
url="https://github.com/PatBall1/detectree2",
packages=find_packages(),
test_suite="detectree2.tests.test_all.suite",
python_requires=">=3.8",
install_requires=[
# Core
"pyyaml>=5.1",
"numpy>=1.20",
"pandas>=1.3",
"tqdm>=4.60",
"opencv-python>=4.5",
# Geospatial — shapely 2.x required by evaluation module (make_valid)
"shapely>=2.0",
"geopandas>=0.13",
"rasterio>=1.2,<1.4",
"fiona>=1.8,<1.10",
"rtree>=0.9",
# Evaluation utils
"pycocotools>=2.0.4",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)