-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 910 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 910 Bytes
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
[project]
name = "pystapi-client"
version = "0.0.1"
description = "Python library for searching Satellite Tasking API (STAPI) APIs."
readme = "README.md"
authors = [
{ name = "Kaveh Karimi-Asli", email = "ka7eh@pm.me" },
{ name = "Philip Weiss", email = "philip.weiss@orbitalsidekick.com" },
{ name = "Stella Reinhardt", email = "stella@stellamaria.de" },
]
maintainers = [{ name = "Pete Gadomski", email = "pete.gadomski@gmail.com" }]
keywords = ["stapi"]
license = { text = "MIT" }
requires-python = ">=3.11"
dependencies = [
"httpx>=0.28.1",
"stapi-pydantic",
"python-dateutil>=2.8.2",
"click>=8.1.8",
]
[dependency-groups]
dev = ["pytest>=8.3.5", "respx>=0.22.0", "types-click>=7.1.8"]
[project.scripts]
stapi = "pystapi_client.scripts.cli:cli"
[tool.uv.sources]
stapi-pydantic = { workspace = true }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"