-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (30 loc) · 989 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
[project]
name = "pyadsb"
dynamic = [ "version" ]
authors = [
{ name="Oskar Enoksson", email="enok@lysator.liu.se" },
]
maintainers = [
{ name="Oskar Enoksson", email="enok@lysator.liu.se" },
]
description = "Functionality for encoding/decoding ADSB messages written in pure Python 3"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 3 - Alpha",
]
keywords = [ "adsb", "ads-b", "aircraft", "mode-s" ]
[project.urls]
Homepage = "https://github.com/enok71/adsb"
Issues = "https://github.com/enok71/adsb/issues"
Documentation = "https://github.com/enok71/adsb/wiki"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = [ "src" ]