-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
33 lines (29 loc) · 897 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 = "a2ln"
version = "1.1.14"
description = "A way to display Android phone notifications on Linux"
readme = "pypi.md"
requires-python = ">=3.8"
license = { file = "COPYING" }
authors = [
{ name = "patri9ck", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Operating System :: POSIX :: Linux",
"Topic :: Desktop Environment",
"Topic :: Utilities"
]
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[project.urls]
Homepage = "https://patri9ck.dev/a2ln/"
Repository = "https://github.com/patri9ck/a2ln-server"
Issues = "https://github.com/patri9ck/a2ln-server/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
a2ln = "a2ln:main"