slpkg/pyproject.toml
2023-08-09 11:22:13 +03:00

55 lines
1.5 KiB
TOML

[build-system]
requires = ["flit_core>=3.2.0,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "slpkg"
version = "4.9.2"
authors = [
{name = "Dimitris Zlatanidis", email = "dslackw@gmail.com"},
]
maintainers = [
{name = "Dimitris Zlatanidis", email = "dslackw@gmail.com"},
]
description = "Package manager utility for Slackware Linux"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["slackware", "linux", "package", "manager", "tool"]
license = {text = "MIT License"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Unix Shell",
"Topic :: Utilities",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Software Distribution",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Systems Administration",
"Topic :: System :: Software Distribution"
]
dependencies = [
"SQLAlchemy>=1.4.46",
"pythondialog>=3.5.3",
"progress>=1.6",
]
[tool.flit_core]
name = "slpkg"
[project.urls]
homepage = "https://dslackw.gitlab.io/slpkg/"
repository = "https://gitlab.com/dslackw/slpkg.git"
changelog = "https://gitlab.com/dslackw/slpkg/-/blob/master/ChangeLog.txt"
[project.optional-dependencies]
socks = ["PySocks>=1.7.1"]
[project.scripts]
slpkg = "slpkg.main:main"
slpkg_new-configs = "slpkg.new_configs:main"