-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
51 lines (40 loc) · 1.08 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
[tool.poetry]
name = "PyMoe"
version = "2.2.1"
description = "This is Pymoe. The only python library you'll need if you need information on Anime, Manga, Light Novels, or Visual Novels."
authors = ["Charles Click <[email protected]>"]
readme = "README.md"
packages = [{include="pymoe"}]
[tool.poetry.group.documentation]
optional = true
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.cleaning]
optional = true
[tool.poetry.dependencies]
python = "^3.10"
requests = "*"
bs4 = "*"
ujson = "*"
[tool.poetry.group.documentation.dependencies]
mkdocs = "1.5.*"
mkdocs-material = "9.5.*"
mkdocstrings = { version = "0.24.*", extras = ['python'] }
mkdocs-git-revision-date-localized-plugin = "*"
[tool.poetry.group.tests.dependencies]
pytest = "*"
[tool.poetry.group.cleaning.dependencies]
black = "*"
isort = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--import-mode=importlib -v"
testpaths = "tests"
[tool.isort]
profile = "black"
skip_gitignore = true
line_length = 90
[tool.black]
line-length = 90