Files
Javelina/pyproject.toml
profitroll 48f24c3a6b
All checks were successful
Test / build (push) Successful in 27s
Moved project structure to javelina/
2025-07-28 01:32:38 +02:00

38 lines
823 B
TOML

[project]
name = "Javelina"
version = "0.0.1"
dynamic = ["dependencies", "optional-dependencies"]
description = "Discord bot that manages the server and provides an additional RESTful API"
readme = "README.md"
license = "AGPL-3.0"
license-files = ["LICENSE"]
requires-python = ">=3.11"
[tool.setuptools.dynamic]
dependencies = { file = "requirements.txt" }
[tool.setuptools.dynamic.optional-dependencies]
dev = { file = "requirements/dev.txt" }
[tool.setuptools.packages.find]
where = ["javelina"]
[tool.black]
line-length = 96
target-version = ["py311", "py312", "py313"]
[tool.isort]
profile = "black"
[tool.mypy]
namespace_packages = true
install_types = true
strict = true
show_error_codes = true
[tool.pylint]
disable = ["line-too-long"]
[tool.pylint.main]
extension-pkg-whitelist = ["ujson"]
py-version = 3.11