remove crap from local pyprojects

This commit is contained in:
2026-07-17 09:32:36 +03:00
parent 6664a2e656
commit 11965d78d3
5 changed files with 12 additions and 42 deletions
+2 -12
View File
@@ -6,13 +6,6 @@ build-backend = "hatchling.build"
[project] [project]
name = "ahriman-core" name = "ahriman-core"
description = "ArcH linux ReposItory MANager, core package"
readme = "../README.md"
requires-python = ">=3.13"
license = { file = "../COPYING" }
authors = [
{ name = "ahriman team" },
]
dependencies = [ dependencies = [
"bcrypt", "bcrypt",
"filelock", "filelock",
@@ -20,9 +13,11 @@ dependencies = [
"pyelftools", "pyelftools",
"requests", "requests",
] ]
description = "ArcH linux ReposItory MANager, core package"
dynamic = [ dynamic = [
"version", "version",
] ]
requires-python = ">=3.13"
[project.optional-dependencies] [project.optional-dependencies]
journald = [ journald = [
@@ -56,11 +51,6 @@ validator = [
[project.scripts] [project.scripts]
ahriman = "ahriman.application.ahriman:run" ahriman = "ahriman.application.ahriman:run"
[project.urls]
Documentation = "https://ahriman.readthedocs.io/"
Repository = "https://github.com/arcan1s/ahriman"
Changelog = "https://github.com/arcan1s/ahriman/releases"
[tool.hatch.build.targets.wheel] [tool.hatch.build.targets.wheel]
packages = [ packages = [
"src/ahriman", "src/ahriman",
+2 -12
View File
@@ -6,24 +6,14 @@ build-backend = "hatchling.build"
[project] [project]
name = "ahriman-triggers" name = "ahriman-triggers"
description = "ArcH linux ReposItory MANager, additional extensions"
readme = "../README.md"
requires-python = ">=3.13"
license = { file = "../COPYING" }
authors = [
{ name = "ahriman team" },
]
dependencies = [ dependencies = [
"ahriman-core", "ahriman-core",
] ]
description = "ArcH linux ReposItory MANager, additional extensions"
dynamic = [ dynamic = [
"version", "version",
] ]
requires-python = ">=3.13"
[project.urls]
Documentation = "https://ahriman.readthedocs.io/"
Repository = "https://github.com/arcan1s/ahriman"
Changelog = "https://github.com/arcan1s/ahriman/releases"
[tool.hatch.build.targets.wheel] [tool.hatch.build.targets.wheel]
packages = [ packages = [
+2 -12
View File
@@ -6,13 +6,6 @@ build-backend = "hatchling.build"
[project] [project]
name = "ahriman-web" name = "ahriman-web"
description = "ArcH linux ReposItory MANager, web server"
readme = "../README.md"
requires-python = ">=3.13"
license = { file = "../COPYING" }
authors = [
{ name = "ahriman team" },
]
dependencies = [ dependencies = [
"ahriman-core", "ahriman-core",
"aiohttp", "aiohttp",
@@ -20,9 +13,11 @@ dependencies = [
"aiohttp_jinja2", "aiohttp_jinja2",
"aiohttp_sse", "aiohttp_sse",
] ]
description = "ArcH linux ReposItory MANager, web server"
dynamic = [ dynamic = [
"version", "version",
] ]
requires-python = ">=3.13"
[project.optional-dependencies] [project.optional-dependencies]
auth = [ auth = [
@@ -42,11 +37,6 @@ oauth2 = [
"aioauth-client", "aioauth-client",
] ]
[project.urls]
Documentation = "https://ahriman.readthedocs.io/"
Repository = "https://github.com/arcan1s/ahriman"
Changelog = "https://github.com/arcan1s/ahriman/releases"
[tool.hatch.build.targets.wheel] [tool.hatch.build.targets.wheel]
packages = [ packages = [
"src/ahriman", "src/ahriman",
+5 -5
View File
@@ -6,10 +6,6 @@ build-backend = "hatchling.build"
[project] [project]
name = "ahriman" name = "ahriman"
description = "ArcH linux ReposItory MANager"
readme = "README.md"
requires-python = ">=3.13"
license = { file = "COPYING" }
authors = [ authors = [
{ name = "ahriman team" }, { name = "ahriman team" },
] ]
@@ -18,14 +14,18 @@ dependencies = [
"ahriman-triggers", "ahriman-triggers",
"ahriman-web", "ahriman-web",
] ]
description = "ArcH linux ReposItory MANager"
dynamic = [ dynamic = [
"version", "version",
] ]
license = { file = "COPYING" }
readme = "README.md"
requires-python = ">=3.13"
[project.urls] [project.urls]
Changelog = "https://github.com/arcan1s/ahriman/releases"
Documentation = "https://ahriman.readthedocs.io/" Documentation = "https://ahriman.readthedocs.io/"
Repository = "https://github.com/arcan1s/ahriman" Repository = "https://github.com/arcan1s/ahriman"
Changelog = "https://github.com/arcan1s/ahriman/releases"
[dependency-groups] [dependency-groups]
check = [ check = [
+1 -1
View File
@@ -6,10 +6,10 @@ build-backend = "hatchling.build"
[project] [project]
name = "ahriman-pytest-plugins" name = "ahriman-pytest-plugins"
version = "1"
classifiers = [ classifiers = [
"Framework :: Pytest", "Framework :: Pytest",
] ]
version = "1"
[project.entry-points.pytest11] [project.entry-points.pytest11]
ahriman-fixtures = "ahriman_fixtures" ahriman-fixtures = "ahriman_fixtures"