-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.55 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
[project]
name = "stac-fastapi-extensions"
description = "Extensions for stac-fastapi apis."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{ name = "ArturoAI", email = "engineering@arturo.ai" },
]
maintainers = [
{ name = "Vincent Sarago", email = "vincent@developmentseed.org" },
{ name = "Jonathan Healy", email = "jonathan.d.healy@gmail.com" },
{ name = "Pete Gadomski", email = "pete.gadomski@gmail.com" },
{ name = "Jeff Albrecht", email = "geospatialjeff@gmail.com" },
{ name = "Nathan Zimmerman", email = "npzimmerman@gmail.com" },
]
keywords = [
"STAC",
"STAC-API",
"STAC-API-Extensions",
"FastAPI",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version"]
dependencies = [
"stac-fastapi.types~=6.2",
"stac-fastapi.api~=6.2",
]
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"pytest-asyncio",
]
[project.urls]
Homepage = 'https://github.com/stac-utils/stac-fastapi'
[tool.hatch.version]
path = "stac_fastapi/extensions/version.py"
[tool.hatch.build.targets.sdist]
exclude = ["tests/"]
[tool.hatch.build.targets.wheel]
only-include = ["stac_fastapi"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"