25 lines
631 B
TOML
25 lines
631 B
TOML
[build-system]
|
|
build-backend = 'mesonpy'
|
|
requires = ['meson-python']
|
|
|
|
[project]
|
|
name = "adsms"
|
|
version = "0.6"
|
|
description = "Send SMS aircraft alerts based on ADS-B data"
|
|
readme = "README.md"
|
|
authors = [{ name = "Samuel Sloniker", email = "sam@kj7rrv.com"}]
|
|
classifiers = [
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Development Status :: 2 - Pre-Alpha",
|
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
]
|
|
dependencies = ["requests"]
|
|
requires-python = ">=3.7"
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.kj7rrv.com/kj7rrv/adsms"
|
|
|
|
[project.scripts]
|
|
adsms = "adsms:main"
|