genshin-wiki/pyproject.toml

36 lines
827 B
TOML
Raw Normal View History

2023-08-29 13:30:35 +00:00
[project]
name = "genshin-wiki-py"
2023-03-21 10:51:27 +00:00
version = "0.1.0"
2023-08-29 13:30:35 +00:00
description = "Pydantic Genshin Impact Wiki API Wrapper"
authors = [
{ name = "Karako", email = "karakohear@gmail.com" },
]
dependencies = [
"ujson<6.0.0,>=5.7.0",
"orjson<4.0.0,>=3.8.8",
"aiohttp[speedups]<4.0.0,>=3.8.4",
"aiofiles<24.0.0,>=23.1.0",
"regex<2023.0.0,>=2022.10.31",
"arko-wrapper<1.0.0,>=0.2.8",
"peewee>=3.16.3",
"pydantic>=2.3.0",
"pydantic-settings>=2.0.3",
"Cython>=3.0.1",
"apsw>=3.43.0.0",
"gevent>=23.7.0",
]
requires-python = ">=3.11,<4.0"
2023-03-21 10:51:27 +00:00
readme = "README.md"
2023-08-29 13:30:35 +00:00
license = { text = "MIT" }
2023-03-21 10:51:27 +00:00
2023-08-29 13:30:35 +00:00
[project.optional-dependencies]
sqlite = []
2023-03-21 10:51:27 +00:00
2023-08-29 13:30:35 +00:00
[tool.pdm.build]
includes = ["genshin_wiki_py", "pyproject.toml", "README.md", "LICENSE"]
2023-03-21 10:51:27 +00:00
[build-system]
2023-08-29 13:30:35 +00:00
requires = ["pdm-backend"]
build-backend = "pdm.backend"