forked from lumapps/lumapps-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (65 loc) · 1.63 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
69
70
71
[tool.poetry]
name = "lumapps-sdk"
version = "1.1.3b5"
description = ""
authors = ["Aurélien Dentan <[email protected]>", "Ludovic Vaugeois <[email protected]>"]
license = "MIT License"
readme = "README.md"
repository = "https://github.com/lumapps/lumapps-sdk"
homepage = "https://github.com/lumapps/lumapps-sdk"
keywords = ["lumapps-sdk", "sdk", "python"]
packages = [ { include = "lumapps" } ]
include = [
"README.md",
"pyproject.toml"
]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
Authlib = "<=0.15.3"
python-slugify = "^4.0.1"
httpx = "^0.15.5"
PyJWT = "^2.1.0"
pre-commit = "^2.13.0"
requests-oauthlib = "^1.3.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.3"
importlib-metadata = "<5.0"
coverage = "^5.1"
pytest = "^6.0.2"
pytest-mock = "^3.3.1"
bandit = "^1.6.2"
mkdocs-material = "^8.2.10"
mkdocstrings = { version = "0.19.0", extras = ["python"] }
pre-commit = "^2.5.0"
pre-commit-hooks = "^3.1.0"
pylint = "^2.5.3"
mypy = "^0.780"
jinja2 = "^2.11.2"
git-changelog = "^0.4.0"
failprint = "^0.3.0"
black = "22.3.0"
isort = { version = "^4.3", extras = ["pyproject"] }
safety = "^1.9.0"
pytest-cov = "^2.9.0"
pytest-httpx = "^0.9.0"
requests-mock = "^1.9.3"
livereload = "^2.6.3"
vcrpy = "^4.1.1"
pytest-recording = "^0.12.0"
markupsafe = "~2.0.1"
[tool.black]
line-length = 88
[tool.isort]
line_length = 88
not_skip = "__init__.py"
multi_line_output = 3
force_single_line = false
balanced_wrapping = true
default_section = "THIRDPARTY"
known_first_party = "lumapps"
include_trailing_comma = true
[tool.poetry.scripts]
lac = "lumapps.api.cli:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"