-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (74 loc) · 2.08 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sitemap_grabber"
authors = [{name = "SimpleCTO", email = "github+sitemap_grabber@simplecto.com"}]
license = {file = "LICENSE"}
version = "2.0.1"
description = "Grab and recursively parse website sitemaps, robots.txt, and other related files."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
]
dependencies = [
"defusedxml==0.7.1",
"curl_cffi==0.7.3"
]
[project.optional-dependencies]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
]
dev = [
"ruff==0.6.9",
"pre-commit==4.0.1",
"flit==3.9.0",
]
[project.urls]
Home = "https://github.com/simplecto/sitemap_grabber"
Documentation = "https://github.com/simplecto/sitemap_grabber#readme"
Source = "https://github.com/simplecto/sitemap_grabber"
Issues = "https://github.com/simplecto/sitemap_grabber/issues"
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
# Add the `line-too-long` rule to the enforced rule set. By default, Ruff omits rules that
# overlap with the use of a formatter, like Black, but we can override this behavior by
# explicitly adding the rule.
ignore = [
"ANN101",
"E501",
"D203",
"D213",
"D100",
"COM812"
]
select = ["ALL", "W2", "I", "B"]
exclude = [
"tests/*",
".idea/**",
]
[tool.commitizen]
name = "cz_conventional_commits"
version = "2.0.1"
tag_format = "$version"
bump_message = "bump: version $current_version → $new_version"
update_changelog_on_bump = true
changelog_file = "CHANGELOG.md"
changelog_incremental = true
version_files = [
"pyproject.toml:^version",
]