You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

50 lines
1.1 KiB

[build-system]
requires = ["setuptools>=67.6.1"]
build-backend = "setuptools.build_meta"
[project]
name = "pkgupdates"
description = "Tool to check ebuild pavkages for updates."
version = "0.1.0"
license = "GPL-3.0-or-later"
readme = "README.md"
requires-python = "~=3.10"
authors = [
{name = "Ophelia Beatrice de Sica", email = "GoGoOtaku+Python@gmail.com"},
]
maintainers = [
{name = "Ophelia Beatrice de Sica", email = "GoGoOtaku+Python@gmail.com"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"requests"
]
[project.optional-dependencies]
test = [
"unittest",
"requests",
]
doc = [
"sphinx",
"tomli; python_version < '3.11'",
]
network = [
"requests",
]
[project.urls]
Homepage = "https://git.gogootaku.com/pkgupdates"
Documentation = "https://git.gogootaku.com/pkgupdates"
Source = "https://git.gogootaku.com/pkgupdates"
[project.scripts]
pkgupdates = "pkgupdates:main"