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
29 lines (28 loc) · 721 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 721 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
from setuptools import find_packages, setup
setup(
name="detectree2",
version="2.0.1",
author="James G. C. Ball",
author_email="ball.jgc@gmail.com",
description="Detectree packaging",
url="https://github.com/PatBall1/detectree2",
# package_dir={"": "detectree2"},
packages=find_packages(),
test_suite="detectree2.tests.test_all.suite",
install_requires=[
"pyyaml>=5.1",
"numpy",
"rtree",
"proj",
"geos",
"pypng",
"pygeos",
"shapely",
"geopandas",
"rasterio",
"fiona",
"pycrs",
"descartes",
"detectron2@git+https://github.com/facebookresearch/detectron2.git",
],
)