forked from holgi/fastapi-permissions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (62 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
66 lines (62 loc) · 1.26 KB
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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "fastapi_permissions"
author = "Holger Frey"
author-email = "mail@holgerfrey.de"
home-page = "https://github.com/holgi/fastapi-permissions"
description-file = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: Freely Distributable",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
]
requires = [
"fastapi >= 0.33.0",
"python-multipart >= 0.0.5",
]
requires-python = ">=3.6"
[tool.flit.metadata.requires-extra]
test = [
"pytest >= 4.0.0",
"pytest-cov",
"pytest-mock",
"pytest-asyncio",
"pytest-randomly",
"tox",
]
dev = [
"black",
"flake8",
"flake8-comprehensions",
"isort >= 5.0.0",
"keyring",
"pre-commit",
"pyjwt",
"passlib[bcrypt]",
"fastapi[all]",
]
[tool.black]
line-length = 79
py37 = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
line_length=79
multi_line_output=3
length_sort="True"
float_to_top="True"
include_trailing_comma="True"