-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
41 lines (36 loc) · 980 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
40
41
[tool.poetry]
name = "e621"
version = "0.0.7"
description = "e621.net API wrapper written in Python"
authors = ["PatriotRossii <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/PatriotRossii/e621-py"
keywords = ["e621.net", "e621", "e926.net", "e926", "furry", "yiff", "api"]
classifiers = ["Operating System :: OS Independent"]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.27.1"
pydantic = "^1.9.0"
"backports.cached-property" = "^1.0.1"
typing-extensions = "^4.1.1"
[tool.poetry.dev-dependencies]
datamodel-code-generator = "^0.11.20"
black = "^22.3.0"
isort = "^5.10.1"
typer = "^0.4.1"
pytest = "^7.1.1"
pytest-mock = "^3.7.0"
pre-commit = "^2.18.1"
Sphinx = "^4.5.0"
myst-parser = "^0.17.2"
[tool.isort]
py_version = 37
profile = "black"
src_paths = ["e621"]
[tool.black]
target-version = ['py37']
line-length = 120
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"