-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (36 loc) · 970 Bytes
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/adsb_actions"]
#packages = ["src"]
[project]
name = "adsb_actions"
version = "0.0.7"
authors = [
{ name="Paul Eastham", email="[email protected]" },
]
description = "A package for taking actions based on ADS-B data"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"PyYAML >= 6.0.1",
"icao-nnumber-converter-us >= 0.1.0",
"geopy >= 2.4.1",
"Shapely == 1.8.4",
"lxml >= 4.9.4",
"fastkml >= 0.12",
"requests >= 2.31.0",
"Kivy == 2.3.0",
"kivymd == 1.1.1",
"pytest >= 8.1.1",
"prometheus_client >= 0.20.0"
]
[project.urls]
Homepage = "https://github.com/eastham/adsb_actions"
Issues = "https://github.com/eastham/adsb_actions/issues"