-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.old.toml
48 lines (43 loc) · 1.18 KB
/
pyproject.old.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
[tool.poetry]
name = "aiotdlib"
version = "0.24.2"
description = "Python asyncio Telegram client based on TDLib"
authors = ["pylakey <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/pylakey/aiotdlib"
repository = "https://github.com/pylakey/aiotdlib"
packages = [
{ include = "aiotdlib" },
{ include = "aiotdlib_generator" },
]
include = [
"README.md",
"CHANGELOG.md",
]
classifiers = [
"Framework :: AsyncIO",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.9"
pydantic = ">=2,<3"
sortedcontainers = "^2.4.0"
ujson = "^5.4.0"
pydantic-settings = "^2.1.0"
[tool.poetry.dev-dependencies]
Jinja2 = "^3.1.3"
[tool.poetry.scripts]
aiotdlib_generator = "aiotdlib_generator.__main__:main"
[tool.poetry.group.dev.dependencies]
pydash = "^7.0.4"
black = ">=23.3,<25.0"
bump-pydantic = "^0.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"