2023-05-15 17:13:58 +02:00
|
|
|
[build-system]
|
2023-06-29 21:51:13 +02:00
|
|
|
requires = ["flit_core>=3.2.0,<4"]
|
|
|
|
build-backend = "flit_core.buildapi"
|
2023-05-15 17:13:58 +02:00
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "slpkg"
|
2024-08-22 18:52:31 +02:00
|
|
|
version = "5.1.2"
|
2023-05-15 17:13:58 +02:00
|
|
|
authors = [
|
|
|
|
{name = "Dimitris Zlatanidis", email = "dslackw@gmail.com"},
|
|
|
|
]
|
2023-06-30 20:08:01 +02:00
|
|
|
maintainers = [
|
|
|
|
{name = "Dimitris Zlatanidis", email = "dslackw@gmail.com"},
|
|
|
|
]
|
2023-05-15 17:13:58 +02:00
|
|
|
description = "Package manager utility for Slackware Linux"
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.9"
|
|
|
|
keywords = ["slackware", "linux", "package", "manager", "tool"]
|
2024-01-29 22:16:14 +01:00
|
|
|
license = {text = "GNU General Public License v3 (GPLv3)"}
|
2023-05-15 17:13:58 +02:00
|
|
|
classifiers = [
|
2023-12-21 11:47:31 +01:00
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
2023-05-15 17:13:58 +02:00
|
|
|
"Natural Language :: English",
|
2023-12-21 11:56:03 +01:00
|
|
|
"Environment :: Console",
|
2023-05-15 17:13:58 +02:00
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Unix Shell",
|
2024-04-20 23:01:58 +02:00
|
|
|
"Topic :: Utilities", "Topic :: Software Development :: Build Tools",
|
2023-05-15 17:13:58 +02:00
|
|
|
"Topic :: System :: Archiving :: Packaging",
|
|
|
|
"Topic :: System :: Software Distribution",
|
|
|
|
"Topic :: System :: Installation/Setup",
|
|
|
|
"Topic :: System :: Systems Administration",
|
2023-12-21 11:56:03 +01:00
|
|
|
"Topic :: System :: Software Distribution",
|
|
|
|
"Development Status :: 5 - Production/Stable"
|
2023-05-15 17:13:58 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
dependencies = [
|
2024-06-06 22:05:23 +02:00
|
|
|
"pythondialog>=3.5.3",
|
|
|
|
"tomlkit>=0.12.5"
|
2023-05-15 17:13:58 +02:00
|
|
|
]
|
|
|
|
|
2023-06-29 21:51:13 +02:00
|
|
|
[tool.flit_core]
|
|
|
|
name = "slpkg"
|
2023-05-15 17:13:58 +02:00
|
|
|
|
|
|
|
[project.urls]
|
2024-01-29 22:17:27 +01:00
|
|
|
Homepage = "https://dslackw.gitlab.io/slpkg/"
|
|
|
|
Documentation = "https://dslackw.gitlab.io/slpkg/"
|
|
|
|
Repository = "https://gitlab.com/dslackw/slpkg.git"
|
|
|
|
Changelog = "https://gitlab.com/dslackw/slpkg/-/blob/master/ChangeLog.txt"
|
2023-05-15 17:13:58 +02:00
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
socks = ["PySocks>=1.7.1"]
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
slpkg = "slpkg.main:main"
|
|
|
|
slpkg_new-configs = "slpkg.new_configs:main"
|