-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
58 lines (54 loc) · 1.39 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
[project]
name = "eoapi.stac"
description = "STAC Metadata service for eoAPI."
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "Vincent Sarago", email = "vincent@developmentseed.com"},
]
license = {text = "MIT"}
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: GIS",
]
dynamic = ["version"]
dependencies = [
"fastapi>=0.95.1",
"pydantic~=1.0",
"geojson-pydantic~=0.6",
"stac-fastapi.api~=2.4",
"stac-fastapi.types~=2.4",
"stac-fastapi.extensions~=2.4",
"stac-fastapi.pgstac~=2.4",
"jinja2>=2.11.2,<4.0.0",
"pygeoif==0.7",
"starlette-cramjam>=0.3,<0.4",
"importlib_resources>=1.1.0;python_version<'3.9'",
"psycopg_pool",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-asyncio",
"httpx",
]
jwt = [
"pyjwt",
"cryptography"
]
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[tool.pdm.version]
source = "file"
path = "eoapi/stac/__init__.py"
[tool.pdm.build]
includes = ["eoapi/stac"]
excludes = ["tests/", "**/.mypy_cache", "**/.DS_Store"]