-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
39 lines (33 loc) · 1016 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[tool.poetry]
name = "anime-api"
version = "1.0.2"
description = "A collection of wrappers for anime-related APIs"
authors = ["Neki <nyeki@nyeki.dev>"]
maintainers = ["Neki <nyeki@nyeki.dev>"]
readme = "README.md"
packages = [{include = "anime_api"}]
license = "MIT"
homepage = "https://github.com/Nekidev/anime-api"
repository = "https://github.com/Nekidev/anime-api"
documentation = "https://github.com/Nekidev/anime-api/tree/main/docs"
keywords = ["anime", "anime api", "api", "manga", "manga api", "catgirl", "anime images", "anime pictures"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities",
]
exclude = [
"dist/",
"docs/",
]
[tool.poetry.dependencies]
python = ">=3.7,<4"
requests = "^2.28.1"
pykakasi = "^2.2.1"
python-dateutil = "^2.8.2"
[tool.poetry.dev-dependencies]
pytest = "^7.4.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"