add dependency

This commit is contained in:
Karako 2023-03-21 18:51:27 +08:00
parent e97de56370
commit 191cda9fe1
No known key found for this signature in database
GPG Key ID: 5920831B0095D4A0
2 changed files with 1052 additions and 0 deletions

1033
poetry.lock generated Normal file

File diff suppressed because it is too large Load Diff

19
pyproject.toml Normal file
View File

@ -0,0 +1,19 @@
[tool.poetry]
name = "genshinwikidataparser"
version = "0.1.0"
description = "原神 wiki 数据解析库"
authors = ["Karako <karakohear@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
ujson = "^5.7.0"
orjson = "^3.8.8"
aiohttp = {extras = ["speedups"], version = "^3.8.4"}
pydantic = {extras = ["dotenv", "email"], version = "^1.10.6"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"