blob: 91073b0ccc04ee63403061637c4a574edfb713a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mmfwd"
version = "0.0.0"
authors = [
{ name="David Timber", email="dxdt@dev.snart.me" },
]
description = "Forward calls and texts using ModemManager framework"
readme = "README.md"
requires-python = ">= 3.11" # TODO
dependencies = [ "pyjson5", "PyYAML", "PyGObject" ]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/dxdxdt/mmfwd/"
Issues = "https://github.com/dxdxdt/mmfwd/issues"
|