-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (45 loc) · 1016 Bytes
/
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
[tool.poetry]
name = "sitemapr"
version = "0.3.1"
description = "sitemapr is a library that generates sitemaps for SPA websites with declaritve configuration in Python."
authors = ["sjquant <seonujang92@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
typer = "^0.9.0"
pydantic = "^2.6.3"
[tool.poetry.group.dev.dependencies]
ruff = "^0.2.2"
pyright = "^1.1.351"
pytest = "^8.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100
fix = true
exclude = [
'*.pyi',
"site-packages",
".mypy_cache",
".ruff_cache",
]
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
[tool.pyright]
include = ["sitemapr", "tests"]
exclude = [
"**/__pycache__"
]
pythonVersion = "3.10"
typeCheckingMode = "strict"