Fix various issues in pyproject.toml

This commit is contained in:
2025-10-04 18:12:59 -04:00
parent 460ce864e4
commit 5cce3ab4d4

View File

@@ -1,8 +1,8 @@
[project] [project]
name = "Django AI Blocker" name = "ai-blocker"
version = "0.1.0" version = "0.1.0"
authors = [ authors = [
{ name="Andrew Luchuk", emails="andrew.luchuk@outlook.com"}, { name="Andrew Luchuk", email="andrew.luchuk@outlook.com"},
] ]
description = "A small Django app that adds a middleware that blocks all requests that contain certain AI scraper user agents" description = "A small Django app that adds a middleware that blocks all requests that contain certain AI scraper user agents"
readme = "readme.md" readme = "readme.md"
@@ -20,5 +20,5 @@ license-files = ["LICENSE.txt"]
Homepage = "https://git.luchuktech.space/Andrew/django-ai-blocker" Homepage = "https://git.luchuktech.space/Andrew/django-ai-blocker"
[build-system] [build-system]
requires = "poetry-core>=2.0.0,<3.0.0" requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"