-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 845 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 845 Bytes
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "algorithms"
description = "Classic algorithms including Fizz Buzz, Bubble Sort, the Fibonacci Sequence, a Sudoku solver, and more."
version = "0.1.0"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Justintime50" }]
urls = { Homepage = "http://github.com/justintime50/algorithms" }
optional-dependencies = { dev = [
"bandit == 1.9.*",
"mypy == 1.18.*",
"pytest == 9.*",
"pytest-cov == 7.*",
"ruff == 0.14.*",
] }
[tool.setuptools.packages.find]
exclude = ["examples", "test"]
[tool.setuptools.package-data]
algorithms = ["py.typed"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["I", "E501"]
[tool.mypy]
disable_error_code = "import-untyped"