-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 953 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
[tool.poetry]
name = "nadypy"
version = "5.2.2"
description = "A client library for accessing a Nadybot's API"
authors = ["Jens Reidel <[email protected]>"]
readme = "README.md"
packages = [{ include = "nadypy" }]
include = ["CHANGELOG.md", "nadypy/py.typed"]
license = "MIT"
homepage = "https://github.com/Nadybot/nadypy"
repository = "https://github.com/Nadybot/nadypy"
[tool.poetry.dependencies]
python = "^3.6"
httpx = ">=0.15.4,<0.21.0"
attrs = ">=20.1.0,<22.0.0"
python-dateutil = "^2.8.0"
pyopenssl = "^20.0.1"
[tool.flake8]
max-line-length = 120
per-file-ignores = ["nadypy/models/__init__.py:F401", "nadypy/__init__.py:F401"]
[tool.black]
line-length = 120
target_version = ['py36', 'py37', 'py38']
exclude = '''
(
/(
| \.git
| \.venv
| \.mypy_cache
)/
)
'''
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"