forked from gpodder/gpodder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 993 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 = [
"setuptools>=64",
]
build-backend = "setuptools.build_meta"
[project]
name = "gpodder"
description = "Media aggregator and podcast client"
authors = [
{name = "Thomas Perl", email = "[email protected]"},
]
readme = "README.md"
license = {file = "COPYING"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
requires-python = ">=3.7"
dependencies = [
"podcastparser>=0.6.0",
"mygpoclient>=1.7",
"dbus-python;platform_system=='Linux'",
"PyGObject",
]
dynamic = ["version"]
[project.optional-dependencies]
gui = ["PySocks"]
[project.urls]
Homepage = "http://gpodder.org"
Documentation = "https://gpodder.github.io/docs/"
Repository = "https://github.com/gpodder/gpodder"
Issues = "https://github.com/gpodder/gpodder/issues"
"Mailing List" = "http://freelists.org/list/gpodder"
"IRC Channel" = "irc://irc.libera.chat/#gpodder"
[tool.setuptools.dynamic]
version = {attr = "gpodder.__version__"}