-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
68 lines (64 loc) · 1.97 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
[tool.poetry]
name = "telegram-webapp-auth"
version = "3.0.0"
description = "Python package that implements Telegram Mini Apps authentication algorithms."
documentation = "https://swimmwatch.github.io/telegram-webapp-auth/"
authors = ["Dmitry Vasiliev <contact.vasiliev.dmitry@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://pypi.org/project/telegram-webapp-auth/"
repository = "https://github.com/swimmwatch/telegram-webapp-auth"
keywords = ["Telegram", "Telegram Mini Apps", "Telegram Bot", "Poetry"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Security",
]
packages = [{include = "telegram_webapp_auth"}]
[tool.poetry.dependencies]
python = "^3.9.2"
cryptography = "^44.0.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.0.1"
flake8 = "7.1.1"
black = ">=23.1,<25.0"
lazydocs = "^0.4.8"
pydocstyle = "^6.3.0"
isort = "^5.13.2"
flake8-isort = "^6.1.1"
flake8-quotes = "^3.4.0"
flake8-string-format = "^0.3.0"
pep8-naming = "^0.14.1"
flake8-bandit = "^4.1.1"
flake8-comprehensions = "^3.15.0"
flake8-pyproject = "^1.2.3"
typing-extensions = "^4.12.2"
mkdocs-material = "^9.5.38"
mkdocstrings = ">=0.26.1,<0.28.0"
mkdocstrings-python = "^1.11.1"
mkdocs-coverage = "^1.1.0"
mkdocs-section-index = "^0.3.9"
mkdocs = "^1.6.1"
mkdocs-macros-plugin = "^1.2.0"
mkdocs-minify-plugin = "^0.8.0"
pytest = "^8.3.3"
pytest-xdist = "^3.6.1"
freezegun = "^1.5.1"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
default_section = "THIRDPARTY"
force_single_line = true
line_length = 120
use_parentheses = true
py_version=39