-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
61 lines (55 loc) · 1.32 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
[tool.poetry]
name = "tdp-server"
version = "0.1.0"
description = ""
authors = ["Guillaume Boutry <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.6.2,<4.0"
fastapi = { version = "0.83.0" }
tdp-lib = { git = "https://github.com/TOSIT-IO/tdp-lib", tag = "0.1" }
alembic = "1.7.7"
tenacity = "8.0.1"
psycopg2-binary = { version ="2.9.5", optional = true}
Authlib = "1.0.0"
httpx = "0.22.0"
python-jose = { version = "3.3.0", extras = ["cryptography"] }
filelock = "3.4.1"
jsonschema = "3.2.0"
[tool.poetry.dev-dependencies]
pytest = "6.2.5"
requests = "2.27.1"
black = "22.8.0"
isort = "5.10.1"
uvicorn = { version = "0.16.0", extras = ["standard"] }
pre-commit = "2.17.0"
[tool.poetry.extras]
pg = ["psycopg2-binary"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py36']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.venv
| venv
| _build
| build
| dist
)/
)
'''
[tool.isort]
src_paths = ["tdp_server"]
force_single_line = false
known_first_party = "tdp_server"
known_third_party = "tdp"
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
multi_line_output = 3