-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (53 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
64
65
66
67
[tool.poetry]
name = "Sudoku Solver"
version = "0.0.1"
description = "1st Assignment for Foundations of AI (2024/2025), Graduate Course at Ca' Foscari University Venice."
authors = ["PayThePizzo <872966@stud.unive.it>"]
readme = "README.md"
keywords = ["numpy", "constraint propagation", "genetic algorithm", "ai", "poetry"]
[tool.poetry.dependencies]
python = "^3.12"
poetry = "1.8.4"
numpy = "^2.1.2"
pandas = "^2.2.3"
[tool.poetry.group.scientific.dependencies]
matplotlib = "^3.9.2"
seaborn = "^0.13.2"
scipy = "^1.14.1"
[tool.poetry.group.notebook.dependencies]
jupyterlab = "^4.2.5"
notebook = "^7.2.2"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocstrings = "^0.26.2"
mkdocstrings-python = "^1.12.2"
mkdocs-jupyter = "^0.25.1"
mkdocs-pdf = "^0.1.2"
pymdown-extensions = "^10.12"
[tool.poetry.group.test.dependencies]
psutil = "^6.1.0"
logging = "^0.4.9.6"
memory-profiler = "^0.61.0"
[tool.poetry.group.lint.dependencies]
flake8 = "^7.1.1"
flake8-docstrings = "^1.7.0"
flake8-bugbear = "^24.8.19"
flake8-comprehensions = "^3.15.0"
flake8-bandit = "^4.1.1"
flake8-simplify = "^0.21.0"
flake8-warnings = "^0.4.1"
flake8-clean-block = "^0.1.2"
flake8-literal = "^1.4.0"
flake8-quotes = "^3.4.0"
flake8-functions-names = "^0.4.0"
flake8-variables-names = "^0.0.6"
flake8-functions = "^0.0.8"
flake8-docstring-checker = "^1.2"
black = "^24.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project]
dependencies = [
"mkdocstrings-python",
]