forked from avixiii-dev/django-seo-optimizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (43 loc) · 1.44 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "django-seo-optimizer"
version = "1.0.1"
authors = [
{ name="avixiii", email="[email protected]" },
]
description = "A powerful Django SEO optimization package with modern features"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking",
]
dependencies = [
"django>=3.2",
"python-slugify>=8.0.1",
"beautifulsoup4>=4.12.0",
"requests>=2.31.0",
]
[project.urls]
"Homepage" = "https://github.com/avixiii-dev/django-seo-optimizer"
"Documentation" = "https://avixiii.com/django-seo-optimizer"
"Bug Tracker" = "https://github.com/avixiii-dev/django-seo-optimizer/issues"
[tool.hatch.build.targets.wheel]
packages = ["seo_optimizer"]