-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
53 lines (49 loc) · 999 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
42
43
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "pixiv-api"
version = "1.0.0"
description = "A library for the Pixiv API."
authors = ["blissful <[email protected]>"]
license = "Apache-2.0"
readme = "README.rst"
repository = "https://github.com/azuline/pixiv-api"
packages = [
{ include = "pixivapi" }
]
[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.0.0"
cloudscraper = "^1.2.48"
[tool.poetry.dev-dependencies]
flake8 = "^3.7"
sphinx = "^2.1"
sphinx_rtd_theme = "^0.4.3"
responses = "^0.12.1"
dephell = "^0.8.3"
black = "^20.8b1"
isort = "^5.7.0"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
snapshottest = "^0.6.0"
[tool.black]
line-length = 88
force-exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| snapshots
)/
| ^/setup\.py
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"