-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (43 loc) · 1.21 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.poetry]
description = "Command line argument parser"
documentation = "https://github.com/pcastellazzi/tauon/"
homepage = "https://github.com/pcastellazzi/tauon/"
license = "MIT"
name = "tauon"
readme = "README.md"
version = "0.9.5"
authors = ["Pablo Castellazzi <[email protected]>"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
deptry = "*"
pytest = "*"
pytest-cov = "*"
ruff = "*"
[tool.ruff]
builtins = ["_"]
target-version = "py310"
[tool.ruff.lint]
fixable = ["ALL"]
select = ["ALL"]
ignore = [
"ANN", # annotations (flake8-annotations)
"COM", # trailing commas (flake8-commas)
"D", # documentation (pydocstyle)
"INP", # implicity namespaces (flake8-no-pep420)
"T20", # use of print (flake8-print)
"E501", # line too long
"ISC001", # conflics with the formatter
"S101", # use of assert
]