mirror of
https://github.com/PaiGramTeam/python-genshin-artifact.git
synced 2024-11-16 20:59:51 +00:00
33 lines
688 B
TOML
33 lines
688 B
TOML
[tool.poetry]
|
|
name = "Python-Genshin-Artifact"
|
|
version = "0.1.4"
|
|
description = "A Python library that binds to Genshin Artifact damage calculation and analysis engine."
|
|
authors = ["luoshuijs"]
|
|
license = "MIT license"
|
|
readme = "README.md"
|
|
packages = [
|
|
{ include = "python_genshin_artifact" },
|
|
]
|
|
|
|
[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']
|