-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.19 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "opensky-cli"
version = "0.1.1"
description = "OpenSky flight search CLI with itinerary and overflight conflict-zone flagging"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{ name = "Federico De Ponte" },
]
keywords = ["flights", "travel", "safety", "conflict-zones"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Internet",
]
dependencies = [
"typer>=0.15",
"rich>=13.0",
"pydantic>=2.10",
"airportsdata>=20240101",
"ratelimit>=2.2",
"httpx>=0.27",
]
[project.scripts]
opensky = "opensky.cli:app"
skyroute = "opensky.cli:app"
[project.urls]
Homepage = "https://github.com/buildingopen/opensky"
Repository = "https://github.com/buildingopen/opensky"
[tool.hatch.build]
exclude = [
".venv*",
"venv*",
".pytest_cache",
"dist",
"build",
]
[tool.hatch.build.targets.wheel]
packages = ["src/opensky", "src/skyroute"]
[tool.pytest.ini_options]
testpaths = ["tests"]