-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (64 loc) · 1.79 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
[project]
name = "cartoload"
version = "0.1.0"
description = "Convert raster geodata into GPS raser device maps"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "LGPL-3.0-or-later" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"click>=8.0",
"PyYAML>=6.0",
"requests>=2.28",
"pystac-client>=0.6",
"numpy>=1.24",
"Pillow>=10.0",
"mozjpeg-lossless-optimization>=1.0",
"rich>=13.0",
"rasterio>=1.4.4",
"pyproj>=3.7.2",
"cryptography>=48.0.0",
]
[project.scripts]
cartoload = "cartoload.cli:main"
[project.urls]
Repository = "https://github.com/burgdev/cartoload"
Documentation = "https://burgdev.github.io/cartoload/"
Changelog = "https://github.com/burgdev/cartoload/blob/main/CHANGELOG.md"
Releases = "https://github.com/burgdev/cartoload/releases"
[dependency-groups]
dev = [
"bump2version>=1.0.1",
"deptry>=0.21",
"git-cliff>=2.7",
"pre-commit>=4.0",
"ruff>=0.8",
"ty>=0.0.1a23",
]
docs = ["zensical>=0.0.33"]
test = ["pytest>=8.3", "pytest-cov>=4.1", "pytest-xdist>=3.8"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"gmt: requires gmt (GMapTool) binary on PATH",
"gdal: requires GDAL/rasterio system libraries",
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.deptry]
extend_exclude = ["tasks/__init__.py"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/cartoload"]
[tool.hatch.build.targets.sdist]
include = ["src/cartoload"]