-
Notifications
You must be signed in to change notification settings - Fork 178
/
pyproject.toml
79 lines (74 loc) · 2.18 KB
/
pyproject.toml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61",
"setuptools-scm[toml]>=6.2.3",
]
[project]
name = "deepforest"
version = "1.4.2"
description = "Tree crown prediction using deep learning retinanets"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.8,<3.13"
classifiers = [
"Development Status :: 6 - Mature",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Image Recognition"
]
authors = [
{ name = "Ben Weinstein", email = "[email protected]" },
{ name = "Henry Senyondo", email = "[email protected]" },
{ name = "Muhammed Magdy", email = "[email protected]" },
{ name = "Om Doiphode", email = "[email protected]" },
{ name = "Dingyi Fang", email = "[email protected]" },
{ name = "Ethan White", email = "[email protected]" }
]
urls.Documentation = "http://deepforest.readthedocs.io/en/latest/"
urls.Source = "https://github.com/Weecology/DeepForest"
urls.Contributors = "https://github.com/Weecology/DeepForest/graphs/contributors"
dependencies = [
"albumentations>=1.0.0",
"aiolimiter",
"aiohttp",
"docformatter",
"huggingface_hub>=0.25.0",
"geopandas",
"matplotlib",
"nbqa",
"numpy",
"opencv-python-headless>=4.5.4",
"pandas",
"Pillow>6.2.0",
"progressbar2",
"pycocotools",
"pydata-sphinx-theme",
"Pygments",
"pytorch-lightning>=1.5.8",
"rasterio",
"recommonmark",
"rtree",
"safetensors",
"scipy>1.5",
"six",
"slidingwindow",
"sphinx",
"supervision",
"torch",
"torchvision>=0.13",
"tqdm",
"xmltodict",
]
[tool.setuptools.packages.find]
where = ["src"]