mirror of
https://github.com/maoakeEnterprise/amazing.git
synced 2026-04-28 16:04:35 +02:00
35 lines
564 B
TOML
35 lines
564 B
TOML
[project]
|
|
name = "A-Maze-ing"
|
|
version = "0.1.0"
|
|
description = "This is the way"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"numpy>=2.2.6",
|
|
"pydantic>=2.12.5",
|
|
]
|
|
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"mypy>=1.19.1",
|
|
"flake8>=7.3.0",
|
|
"pytest>=9.0.2",
|
|
]
|
|
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
explicit_package_bases = true
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=78.1.0", "wheel>=0.45.1"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src/amaz_lib"}
|
|
|