-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (54 loc) · 1.65 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "django-check-seo"
version = "2.1.1"
description = "Django Check SEO will check the SEO aspects of your site for you, and will provide advice in case of problems."
readme = "README.md"
license = { text = "GPL-3.0" }
requires-python = ">=3.7"
authors = [
{ name = "Dev Kapt", email = "dev@kapt.mobi" },
]
keywords = ["django", "seo", "check"]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Framework :: Django",
"Development Status :: 5 - Production/Stable",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = [
"beautifulsoup4",
"lxml",
"unidecode",
]
[project.urls]
Homepage = "https://github.com/kapt-labs/django-check-seo"
[tool.setuptools.packages.find]
include = ["django_check_seo*"]
[tool.ruff]
line-length = 88
target-version = "py37"
[tool.ruff.lint]
extend-select = ["I"] # isort (import sorting)
[tool.pytest.ini_options]
python_files = ["tests.py", "test_*.py", "*_tests.py"]
DJANGO_SETTINGS_MODULE = "tests_settings"
[tool.coverage.run]
omit = [
"django_check_seo/checks/*",
"django_check_seo/conf/*",
"*/__init__.py",
"django_check_seo/urls.py",
"django_check_seo/views.py",
"django_check_seo/check_list/launch_checks.py",
"django_check_seo/apps.py",
"django_check_seo/cms_toolbars.py",
"django_check_seo/checks_list/launch_checks.py",
]