forked from stapi-spec/pystapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 824 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 824 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
[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",
]
[project.scripts]
stapi-client = "pystapi_client.cli:cli"
[tool.uv.sources]
stapi-pydantic = { workspace = true }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"