-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (66 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
72 lines (66 loc) · 1.67 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "eolabtools"
description = "Collection of tools for data"
version = "1.0.2"
requires-python = ">=3.8.13"
dependencies = []
readme = "README.md"
license = { file = "LICENSE.rst" }
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Image Processing",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
NightOsmReg = [
"pytest",
"pytest-cov",
"pyyaml",
"numpy",
"gdal==3.11.0",
"fiona==1.9.6",
"pyogrio",
"shapely>=2",
"geopandas",
"pyrosm",
"rasterio",
"scikit-image",
"opencv-python",
"matplotlib"
]
SunMapGen = [
"pytest",
"pytest-cov",
"pyyaml",
"gdal==3.5.0",
"numpy<2",
"timezonefinder",
"ephem"
]
DetecOrCult = [
"pytest",
"pytest-cov",
"pyyaml",
"geopandas==0.12.2",
"fiona==1.9.6",
"rasterio",
"gdal==3.11.0",
"scikit-learn",
"opencv-contrib-python",
"rasterstats",
"numpy==1.26.4",
"pandas==1.5.3"
]
[project.urls]
homepage = "https://github.com/CNES/eolabtools"
repository = "https://github.com/CNES/eolabtools"
[project.scripts]
night_osm_image_registration = "eolabtools.night_osm_registration.register_image:main"
night_osm_vector_registration = "eolabtools.night_osm_registration.register_vector:main"
detection_orientation_culture = "eolabtools.detection_orientation_culture.orientation_detection:main"
sun_map_generation = "eolabtools.sun_map_generation.SunMapGenerator:main"