-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (99 loc) · 2.88 KB
/
pyproject.toml
File metadata and controls
105 lines (99 loc) · 2.88 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
requires = ["setuptools>=61", "wheel", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "panel_segmentation"
dynamic = ["version"]
description = "A package to segment solar panels from a satellite image and perform automated metadata extraction."
license = { text = "MIT" }
requires-python = ">=3.10"
keywords = [
"photovoltaic",
"solar",
"analytics",
"analysis",
"performance",
"PV",
"satellite",
]
authors = [
{ name = "Kirsten Perry", email = "kirsten.perry@nrel.gov" },
{ name = "Quyen Nguyen", email = "nguyquye@oregonstate.edu" },
{ name = "Kevin Anderson", email = "kevin.anderson@snl.gov" },
{ name = "Christopher Campos", email = "chris.acampos@yahoo.com" },
{ name = "Ayobami Edun", email = "aedun@ufl.edu" },
]
dependencies = [
"opencv-python-headless>=4.10.0.84",
"numpy>=1.26,<3",
"scikit_image>=0.16.2",
"matplotlib>=3.8.0",
"requests>=2.22.0",
"pandas>=2.2.3",
"Pillow>=10.3.0",
"scikit_learn>=0.23.2",
"h5py>=2.10.0",
"torch>=1.9.0",
"torchvision>=0.10.0",
"mmdet==3.3.0",
"mmengine==0.10.7",
"kornia",
"scipy",
"rasterio>=1.3.10",
"geopandas>=0.14.0",
"beautifulsoup4==4.12",
"laspy[laszip]==2.5.4",
"open3d==0.19.0",
"pyarrow==17.0.0",
"pyproj>=3.6.0",
"cfgrib>=0.9.15.0",
"folium>=0.18.0",
"simplekml>=1.3.6",
"xarray>=2023.1.0",
"Shapely>=2.0.6"
]
[project.optional-dependencies]
doc = [
"sphinx==5.0",
"jinja2>=3.1.2",
"pydata-sphinx-theme==0.14.0",
"ipython",
"nbsphinx",
"sphinx_copybutton",
]
test = [
"pytest>=5.3.5",
"pytest-mock",
"pytest-forked",
]
optional = []
[project.urls]
Homepage = "https://github.com/NREL/Panel-Segmentation"
[tool.setuptools]
zip-safe = false
include-package-data = true
packages = ["panel_segmentation"]
[tool.setuptools.package-data]
panel_segmentation = [
"panel_segmentation/examples/*",
"panel_segmentation/tests/*",
"panel_segmentation/models/hail_config.py",
"panel_segmentation/models/hail_model.pth",
"panel_segmentation/models/post_hurricane_config.py",
"panel_segmentation/models/post_hurricane_model.pth",
"panel_segmentation/models/pre_hurricane_config.py",
"panel_segmentation/models/pre_hurricane_model.pth",
"panel_segmentation/models/sol_searcher_config.py",
"panel_segmentation/models/sol_searcher_model.pth",
"panel_segmentation/models/automated_geotagging_config.py",
"panel_segmentation/models/automated_geotagging_model.pth",
"panel_segmentation/models/panel_detection_config.py",
"panel_segmentation/models/panel_detection_model.pth"
]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "panel_segmentation/_version.py"
versionfile_build = "panel_segmentation/_version.py"
tag_prefix = "v"
parentdir_prefix = "panel_segmentation-"