File size: 602 Bytes
f440f03 | 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 | [build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "maris-core"
version = "0.1.0"
description = "Maris AI — MI kodols"
authors = [{ name = "Māris", email = "maris@maris-ai.lv" }]
requires-python = ">=3.11"
license = { text = "MIT" }
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.packages.find]
where = ["."]
include = ["maris_core*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-v --tb=short"
[tool.ruff]
extend = "ruff.toml"
|