forked from pylakey/aiotdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 988 Bytes
/
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
[tool.poetry]
name = "aiotdlib"
version = "0.19.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 :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^1.9.1"
sortedcontainers = "^2.4.0"
ujson = "^5.4.0"
[tool.poetry.dev-dependencies]
Jinja2 = "^3.1.2"
[tool.poetry.scripts]
aiotdlib_generator = "aiotdlib_generator.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"