This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (60 loc) · 1.82 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[project]
name = "AniLinkPy"
version = "1.0.2"
description = "API wrapper for AniManga sites such as Anilist, MyAnimeList, Kitsu."
authors = [{ name = "RLAlpha49", email = "RLAlpha49 <75044176+RLAlpha49@users.noreply.github.com>"}]
readme = "README.md"
requires-python = ">3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[tool.poetry]
name = "AniLinkPy"
version = "1.0.2"
description = "API wrapper for AniManga sites such as Anilist, MyAnimeList, Kitsu."
authors = ["RLAlpha49"]
readme = "README.md"
license = "MIT"
packages = [{ include = "AniLinkPy/**/*" }]
[tool.poetry.dependencies]
python = "^3.9"
requests = "2.32.3"
[tool.poetry.dev-dependencies]
python-dotenv = "*"
types-requests = "*"
twine = "^5.1.1"
isort = "^5.13.2"
black = "^24.10.0"
pylint = "^3.3.1"
mypy = "^1.11.2"
flake8 = "^7.1.1"
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.40"
mkdocstrings = {extras = ["crystal", "python"], version = "^0.26.1"}
mkdocs-git-revision-date-localized-plugin = "^1.2.9"
mkdocs-git-committers-plugin-2 = "^2.4.1"
ruff = "^0.6.9"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
build = "scripts:build"
clean = "scripts:clean"
[tool.isort]
profile = "black"
skip_gitignore = true
[tool.flake8]
max-line-length = 120
[tool.pylint]
max-line-length = 120
disable = "too-few-public-methods,missing-module-docstring,invalid-name,R0801"