-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (41 loc) · 1.14 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "truth_tables"
description = "Create pretty-printed truth tables from boolean expressions!"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [{name = "salt-die", email = "salt-die@protonmail.com"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["lark>=1.2.2"]
dynamic = ["version"]
[project.urls]
"repository" = "https://github.com/salt-die/truth_tables"
[tool.setuptools.dynamic]
version = {attr = "truth_tables.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
exclude = []
[tool.ruff.lint]
select = [
"D", # pydocstyle
"F", # pyflakes
"E", # pycodestyle - error
"W", # pycodestyle - warning
"I", # isort
]
ignore = [
"D105", # undocumented-magic-method
"D205", # blank-line-after-summary -- This rule seems bugged for summaries that need more than one line.
]
fixable = ["ALL"]
[tool.ruff.pydocstyle]
convention = "numpy"
[tool.ruff.pycodestyle]
max-doc-length=88