-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (47 loc) · 1.22 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "underscores"
dynamic = ["version"]
description = "_ allows you to write Python code using only _."
readme = "README.md"
license = { file = "LICENSE.txt" }
requires-python = ">=3.9"
authors = [{ name = "Lemonyte" }]
keywords = ["_", "underscore", "encoding", "joke"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
[project.urls]
Repository = "https://github.com/lemonyte/_"
[dependency-groups]
dev = [
"pre-commit~=3.8.0",
"pytest-cov~=5.0.0",
"pytest~=8.3.3",
"setuptools>=61",
]
[tool.setuptools]
package-data = { underscores = ["py.typed"] }
[tool.setuptools.dynamic]
version = { attr = "underscores.__version__" }
[tool.ruff]
src = ["src"]
exclude = ["tests/code/**"]
line-length = 119
target-version = "py39"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["A", "D", "T"]
[tool.ruff.lint.per-file-ignores]
"**/tests/*" = ["S101", "S603"]
[tool.pyright]
venvPath = "."
venv = ".venv"
exclude = ["tests/code/**"]