-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (46 loc) · 1.26 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "python-recipe"
version = "0.1"
authors = [
{name="Yann Tremblay", email="[email protected]"}
]
description = "Let's cook some values!"
readme = "README.md"
license = {file="LICENSE"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed"
]
[project.optional-dependencies]
tests = {file="requirements_dev.txt"}
[project.urls]
"Homepage" = "https://github.com/Tombmyst/python-recipe"
"Bug Tracker" = "https://github.com/Tombmyst/python-recipe/issues"
[tool.pytest.ini_options]
minversion = "7.1.2"
python_files = "test_*.py"
testpaths = [
"tests"
]
pythonpath = "."
[tool.black]
line-length = 100
[tool.pylint.master]
py-version = "3.10"
recursive = true
jobs = 0
[tool.pylint.'MESSAGE CONTROL']
confidence = "UNDEFINED"
[tool.pylint.reports]
output-format = "colorized"