-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (50 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
61 lines (50 loc) · 1.75 KB
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sudoku_dlx"
version = "0.2.0"
description = "Fast Sudoku DLX (Algorithm X) with Python bitsets; generator for minimal unique puzzles."
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Stamatis-Christos Saridakis" }]
requires-python = ">=3.10"
dependencies = []
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Games/Entertainment :: Puzzle Games",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.scripts]
sudoku-dlx = "sudoku_dlx.cli:main"
[tool.poetry.scripts]
sudoku-dlx = "sudoku_dlx.cli:main"
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-cov>=5", "ruff>=0.6", "black>=24.8", "pre-commit>=3.7", "hypothesis>=6.113",
"mkdocs>=1.6", "mkdocs-material>=9.5"]
# optional solver cross-checkers
sat = ["python-sat>=0.1.8"]
[project.urls]
Homepage = "https://github.com/SaridakisStamatisChristos/sudoku_dlx"
Repository = "https://github.com/SaridakisStamatisChristos/sudoku_dlx"
Issues = "https://github.com/SaridakisStamatisChristos/sudoku_dlx/issues"
Changelog = "https://github.com/SaridakisStamatisChristos/sudoku_dlx/releases"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
sudoku_dlx = ["py.typed"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
select = ["E","F","I","B","UP"]
[tool.pytest.ini_options]
addopts = "-q --cov=sudoku_dlx --cov-report=xml --cov-report=term-missing"
testpaths = ["tests"]