-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (75 loc) · 2.31 KB
/
pyproject.toml
File metadata and controls
82 lines (75 loc) · 2.31 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "telegram-webapp-auth"
packages = [{include = "telegram_webapp_auth"}]
[tool.poetry.dependencies]
python = "^3.10"
cryptography = ">=44"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.9"
[project]
name = "telegram-webapp-auth"
version = "3.0.7"
description = "Python package that implements Telegram Mini Apps authentication algorithms."
license = "MIT"
readme = "README.md"
authors = [
{name = "Dmitry Vasiliev", email = "contact.vasiliev.dmitry@gmail.com"},
]
maintainers = [
{name = "Dmitry Vasiliev", email = "contact.vasiliev.dmitry@gmail.com"},
]
keywords = ["Telegram", "Telegram Mini Apps", "Telegram Bot", "Poetry"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Security",
]
[project.urls]
homepage = "https://pypi.org/project/telegram-webapp-auth/"
repository = "https://github.com/swimmwatch/telegram-webapp-auth"
documentation = "https://swimmwatch.github.io/telegram-webapp-auth/"
"Bug Tracker" = "https://github.com/swimmwatch/telegram-webapp-auth/issues"
[tool.poetry.group.dev.dependencies]
mypy = "^1.0.1"
flake8 = "7.3.0"
black = ">=23.1,<27.0"
pydocstyle = "^6.3.0"
isort = ">=5.13.2,<7.0.0"
flake8-isort = "^6.1.1"
flake8-quotes = "^3.4.0"
pep8-naming = ">=0.14.1,<0.16.0"
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 = {extras = ["python"], version = ">=0.29.1,<0.31.0"}
mkdocstrings-python = "^1.11.1"
mkdocs-coverage = ">=1.1,<3.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,<8"
pytest-benchmark = "^5.1.0"
flake8-docstrings = "^1.7.0"
bandit = "^1.9.1"
[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=310