-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (45 loc) · 1.26 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
44
45
46
47
48
49
50
[build-system]
build-backend = 'mesonpy'
requires = [
"meson >= 1.3.0",
"meson-python >= 0.14.0",
]
[project]
name = "leaptime-manager"
authors = [
{name = "Himadri Sekhar Basu", email = "[email protected]"},
]
description = "All-in-one GUI based backup manager"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved",
" :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Administration",
]
dependencies = [
"aptdaemon",
"configobj",
"PyGObject",
"python-apt",
"setproctitle",
"tldextract",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://hsbasu.github.io/leaptime-manager"
Repository = "https://www.github.com/mamolinux/leaptime-manager.git"
Issues = "https://www.github.com/mamolinux/leaptime-manager/issues"
# [project.scripts]
# leaptime-manager = "LeaptimeManager.main:start_LTMCli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.ui"]