-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (64 loc) · 1.54 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
[project]
name = "heystac"
authors = [{ name = "Pete Gadomski", email = "[email protected]" }]
version = "0.0.1"
description = "Command-line interface (CLI) to rate and crawl STAC"
keywords = ["stac"]
readme = "README-python.md"
license = { file = "LICENSE.txt" }
requires-python = ">=3.12"
dependencies = [
"click>=8.1.7",
"httpx>=0.27.2",
"jsonschema>=4.23.0",
"pydantic-settings>=2.6.1",
"pydantic>=2.9.2",
"pystac[validation]>=1.11.0",
"shapely>=2.0.6",
"tabulate>=0.9.0",
"tqdm>=4.67.0",
"toml>=0.10.2",
]
classifiers = [
"Topic :: Scientific/Engineering :: GIS",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.scripts]
heystac = "heystac.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mypy>=1.13.0",
"pytest>=8.3.3",
"ruff>=0.7.3",
"types-requests>=2.32.0.20241016",
"types-tabulate>=0.9.0.20240106",
"types-toml>=0.10.8.20240310",
"types-tqdm>=4.66.0.20240417",
]
[tool.mypy]
strict = true
plugins = "pydantic.mypy"
[[tool.mypy.overrides]]
module = "shapely"
ignore_missing_imports = true
[tool.ruff.lint]
extend-select = ["I"]
[tool.hatch.build.targets.sdist]
exclude = [
"app/*",
".husky/*",
".eslintrc.json",
".gitmodules",
"next.config.ts",
"package.json",
"tsconfig.json",
"yarn.lock",
"catalog/*",
]