-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (75 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
82 lines (75 loc) · 1.69 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["forestvision*"]
[project]
name = "forestvision"
version = "0.1.0"
authors = [
{name = "Yankuic Galvan", email = "yankuic@gmail.com"},
]
description = "Machine learning package for forest analysis from remote sensing data"
readme = {file = "README.md", content-type = "text/markdown"}
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"earthengine-api",
"geopandas",
"kornia",
"torch==2.9.0+cu130",
"torchvision==0.24.0",
"lightning",
"torchgeo==0.7",
"rasterio",
"rio_cogeo",
"scikit-learn",
"numpy",
"pandas",
"matplotlib",
"seaborn",
"shapely>=2.0",
"torchmetrics",
"tqdm",
"python-dotenv",
"python-dateutil",
"retry",
"requests",
"optuna>=3.6.0",
"optuna-integration>=3.6.0",
"pyyaml>=6.0",
"scipy",
"Pillow",
"rtree",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: GIS",
]
[tool.setuptools.package-data]
"forestvision" = ["py.typed"]
"*" = ["*.yaml", "*.yml", "*.json", "*.geojson"]
[tool.ruff]
per-file-ignores = { "*.ipynb" = ["E703"] }
[project.urls]
Homepage = "https://github.com/ygalvan/forestvision"
[project.optional-dependencies]
dev = [
"pytest",
"black",
"flake8",
"mypy",
"sphinx",
]
notebooks = [
"jupyter",
"geemap",
"folium",
]
[tool.black]
line-length = 88
target-version = ['py312']