Create initial pyproject.toml file
This commit is contained in:
24
pyproject.toml
Normal file
24
pyproject.toml
Normal file
@@ -0,0 +1,24 @@
|
||||
[project]
|
||||
name = "Django AI Blocker"
|
||||
version = "0.1.0"
|
||||
authors = [
|
||||
{ name="Andrew Luchuk", emails="andrew.luchuk@outlook.com"},
|
||||
]
|
||||
description = "A small Django app that adds a middleware that blocks all requests that contain certain AI scraper user agents"
|
||||
readme = "readme.md"
|
||||
requires-python = ">=3.9"
|
||||
classifiers = [
|
||||
"Programming Language :: Python :: 3",
|
||||
"Operating System :: OS Independent",
|
||||
"Framework :: Django",
|
||||
"Framework :: Django :: 1.11",
|
||||
]
|
||||
license = "MIT"
|
||||
license-files = ["LICENSE.txt"]
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://git.luchuktech.space/Andrew/django-ai-blocker"
|
||||
|
||||
[build-system]
|
||||
requires = "poetry-core>=2.0.0,<3.0.0"
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
Reference in New Issue
Block a user