-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
99 lines (90 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
build-backend = "flit_core.buildapi"
requires = [
"flit-core>=3.2,<4",
]
[project]
name = "skyr"
readme = "README.md"
license = { text = "ISC" }
maintainers = [
{ name = "Nikita Karamov", email = "[email protected]" },
]
authors = [
{ name = "Nikita Karamov", email = "[email protected]" },
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Build Tools",
"Topic :: Utilities",
"Typing :: Typed",
]
dynamic = [
"description",
"version",
]
dependencies = [
]
urls.Issues = "https://github.com/kytta/skyr/issues"
urls.Source = "https://github.com/kytta/skyr"
scripts.skyr = "skyr:main"
[tool.autopep8]
ignore = [ "W503" ]
[tool.ruff]
target-version = "py39"
line-length = 79
lint.select = [
"A", # flake8-builtins
"B", # flake8-bugbear
"BLE", # flake8-blind-except
"C4", # flake8-comprehensions
"C90", # mccabe
"DTZ", # flake8-datetimez
"E",
"EM", # flake8-errmsg
"ERA", # eradicate
"F", # pyflakes
"FBT", # flake8-boolean-trap
"ICN", # flake8-import-conventions
"ISC", # flake8-implicit-str-concat
"N", # pep8-naming
"PIE", # flake8-pie
"PL", # pylint
"PTH", # flake8-use-pathlib
"Q", # flake8-quotes
"RET", # flake8-return
"RUF", # ruff
"S", # bandit
"SIM", # flake8-simplify
"T20", # flake8-print
"TRY", # tryceratops
"W", # pycodestyle
]
[tool.pytest.ini_options]
addopts = "--tb=short --showlocals"
[tool.coverage.run]
parallel = true
plugins = [ "covdefaults" ]
[tool.mypy]
strict = true
pretty = true
python_version = "3.9"
enable_error_code = [ "ignore-without-code" ]
[[tool.mypy.overrides]]
module = "tests.*"
ignore_errors = true