-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1.08 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
[project]
name = "ispunct"
version = "1.0.6"
description = "Small Python library to check if a character is a punctuation character"
authors = [
{ name = "Jake W. Ireland", email = "jakewilliami@icloud.com" },
]
readme = "README.md"
requires-python = ">=3.9, <4.0.0"
license = { text = "MIT" }
dependencies = []
[project.urls]
# https://github.com/patrick91/links-demo/blob/163034f
Repository = "https://github.com/jakewilliami/ispunct-py"
PyPI = "https://pypi.org/p/ispunct"
[dependency-groups]
dev = [
"pip-audit>=2.9.0",
"pre-commit>=4.2.0",
"pytest>=8.4.1",
"ruff>=0.12.4",
]
[tool.pytest.ini_options]
pythonpath = "src"
[tool.ruff]
# https://peps.python.org/pep-0008/#maximum-line-length
line-length = 80
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
]
ignore = [
# "B008", # docs.astral.sh/ruff/rules/function-call-in-default-argument/
]
fixable = ["ALL"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"] # Unused imports