-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.28 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
[tool.poetry]
name = "mtproto"
version = "0.1.0b12"
description = "Telegram MTProto protocol implementation"
authors = ["RuslanUC <dev_ruslan_uc@protonmail.com>"]
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
"Topic :: Internet",
"Topic :: Utilities",
]
[tool.poetry.urls]
Homepage = "https://github.com/RuslanUC/mtproto"
Repository = "https://github.com/RuslanUC/mtproto"
[tool.poetry.dependencies]
python = "^3.9"
tgcrypto = { version = "^1.2.5", optional = true }
pyaes = { version = "^1.6.1", optional = true }
[tool.poetry.extras]
tgcrypto = ["tgcrypto"]
pyaes = ["pyaes"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
data_file = "coverage.coverage"