forked from persepolisdm/persepolis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1.05 KB
/
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
40
41
42
43
[build-system]
requires = ["meson-python"]
build-backend = "mesonpy"
[tool.setuptools]
py-modules = ["persepolis"]
[project]
name = "persepolis"
version = "5.0.0"
dependencies = [
"pyside6",
"requests",
"setproctitle",
"psutil",
"setuptools",
"yt-dlp"
]
requires-python = ">=3.5"
authors = [
{name = "AliReza AmirSamimi", email = "alireza.amirsamimi@gmail.com"}
]
maintainers = [
{name = "AliReza AmirSamimi", email = "alireza.amirsamimi@gmail.com"}
]
description = "Qt front-end for aria2 download manager"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["persepolis", "download manager", "aria2", "yt-dlp", "pyside6"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python"
]
[project.gui-scripts]
persepolis-gui = "persepolis.scripts.persepolis:main"
[project.urls]
Homepage = "https://persepolisdm.github.io/"
Documentation = "https://github.com/persepolisdm/persepolis/wiki"
Repository = "https://github.com/persepolisdm/persepolis/"
Issues = "https://github.com/persepolisdm/persepolis/issues"