2023-05-09 04:25:00 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "SIMNet"
|
2024-01-17 08:48:30 +00:00
|
|
|
version = "0.1.19"
|
2023-05-09 04:25:00 +00:00
|
|
|
description = "Modern API wrapper for Genshin Impact & Honkai: Star Rail built on asyncio and pydantic."
|
|
|
|
authors = ["PaiGramTeam"]
|
|
|
|
license = "MIT license"
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-07-18 06:29:30 +00:00
|
|
|
python = "^3.8"
|
2023-12-16 07:04:20 +00:00
|
|
|
httpx = "^0.25.0"
|
2023-12-25 09:03:48 +00:00
|
|
|
pydantic = "<2.0.0,>=1.10.7"
|
2023-05-09 04:25:00 +00:00
|
|
|
|
2023-12-25 09:03:48 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
pytest = "^7.4.0"
|
|
|
|
pytest-asyncio = "^0.23.0"
|
|
|
|
python-dotenv = "^1.0.0"
|
|
|
|
black = "^23.12.0"
|
2023-05-09 04:25:00 +00:00
|
|
|
|
|
|
|
[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
|
2023-12-25 09:03:48 +00:00
|
|
|
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
|