forked from PatBall1/detectree2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 750 Bytes
/
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
from setuptools import find_packages, setup
setup(
name="detectree2",
version="0.0.1",
author="James G. C. Ball",
author_email="[email protected]",
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",
"GDAL>=1.11",
"numpy",
"rtree",
"proj",
"geos",
"pypng",
"pygeos",
"shapely",
"geopandas",
"rasterio==1.3a3",
"fiona",
"pycrs",
"descartes",
"detectron2@git+https://github.com/facebookresearch/detectron2.git",
],
)