slpkg/pyproject.toml

56 lines
1.7 KiB
TOML
Raw Normal View History

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"
version = "5.0.8"
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 = [
"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-04-02 20:53:47 +02:00
"pythondialog>=3.5.3"
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"