-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
63 lines (55 loc) · 1.48 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "akarsu"
version = "0.2.0"
description = "New Generation Profiler based on PEP 669"
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE.txt"}
keywords = ["profiler", "PEP669"]
authors = [
{ name = "Furkan Onder", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
"Homepage" = "https://github.com/furkanonder/akarsu"
"Bug Reports" = "https://github.com/furkanonder/akarsu/issues"
"Source" = "https://github.com/furkanonder/akarsu"
[project.scripts]
akarsu = "akarsu.__main__:main"
[tool.black]
target-version = ["py312"]
preview = true
[tool.docformatter]
recursive = true
wrap-summaries = 79
wrap-descriptions = 79
blank = true
[tool.mypy]
warn_unused_configs = true
no_strict_optional = true
ignore_missing_imports = true
show_error_codes = true
[tool.ruff]
select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade,
"I", # isort
]
mccabe = { max-complexity = 14 }
target-version = "py312"
[tool.ruff.per-file-ignores]
'src/akarsu/akarsu.py' = ["E722"]