-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.7 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "auth_lib_profcomff"
authors = [
{name = "profcomff.com", email = "admin@profcomff.com"},
{name = "Semyon Grigoriev", email = "grigoriev@profcomff.com"},
{name = "Roman Dyakov", email = "roman@dyakov.space"}
]
description = "Библиотека функций авторизации для микросервисов Твой ФФ!"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"requests",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://app.profcomff.com"
Documentation = "https://github.com/profcomff/auth-lib/blob/main/README.md"
Repository = "https://github.com/profcomff/auth-lib"
Issues = "https://github.com/profcomff/auth-lib/issues"
Changelog = "https://github.com/profcomff/auth-lib/releases"
[project.entry-points.pytest11]
pytest_auth_lib = "auth_lib.testing"
[tool.setuptools]
packages = ["auth_lib"]
[tool.setuptools.dynamic]
version = {attr = "auth_lib.__version__"}
[project.optional-dependencies]
aio = ["aiohttp"]
fastapi = ["fastapi", "starlette", "pydantic", "pydantic_settings"]
airflow = ["flask", "apache-airflow"]
testing = ["pytest", "pytest-cov", "pytest-mock", "httpx", "requests"]
style = ["black", "isort", "pydocstyle", "autoflake"]
[tool.black]
line-length = 120
target-version = ['py311']
skip-string-normalization = true
[tool.isort]
line_length = 120
multi_line_output = 3
profile = "black"
lines_after_imports = 2
include_trailing_comma = true