python-genshin-artifact/pyproject.toml
洛水居室 b27ff16ce3
🎉 Initial commit
2023-05-14 12:29:29 +08:00

29 lines
628 B
TOML

[tool.poetry]
name = "Python-Genshin-Aartifact"
version = "0.1.0"
description = "A Python library that binds to Genshin Artifact damage calculation and analysis engine."
authors = ["luoshuijs"]
license = "MIT license"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
pydantic = "^1.10.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(message)s"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[tool.black]
include = '\.pyi?$'
line-length = 120
target-version = ['py38']