forked from mamolinux/leaptime-manager
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Use debian pyproject build system - Remove unsed files related to packaging - Use both setup.cfg and pyproject.toml for now so that debian uses python build module. - Add pybuild-plugin-pyproject as build dependency
- Loading branch information
Showing
8 changed files
with
52 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
aptdaemon python3-aptdaemon | ||
aptdaemon python3-aptdaemon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,48 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[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", | ||
] | ||
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] | ||
"*" = ["*VERSION", "*.ui"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {file = "src/LeaptimeManager/VERSION"} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters