-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.23 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
[project]
name = "python-template"
requires-python = ">=3.11"
license = "MIT"
authors = [
{ name = "MJ Sabit (seyLu)", email = "98249191+seyLu@users.noreply.github.com" },
]
description = "Template Repository for quickly starting a Python project."
readme = "README.md"
dynamic = ["version"]
keywords = ["template-repository", "python-template"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = []
[project.urls]
Documentation = "https://github.com/seyLu/python-template#readme"
"Homepage" = "https://github.com/seyLu/python-template"
"Bug Tracker" = "https://github.com/seyLu/python-template/issues"
[tool.ruff.lint]
select = [
"A", # flake8-builtins
"B", # flake8-bugbear
"S", # flake8-bandit
"E", # Pyflakes
"F", # Pycodestyle
"I", # Isort
"PL", # Pylint
"RUF", # Ruff-specific rules
]
ignore = ["E501"]
[tool.mypy]
strict = "True"
implicit_reexport = "True"
check_untyped_defs = true
ignore_missing_imports = true
# Exclude type checking on files/dirs
exclude = [
# TOML basic string (double-quotes, backslash and other characters need escaping)
# TOML literal string (single-quotes, no escaping necessary)
]