2019-11-15 12:18:21 +02:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "aiogram"
|
2022-11-06 14:28:21 +02:00
|
|
|
version = "3.0.0-beta.6"
|
2020-01-22 00:38:36 +02:00
|
|
|
description = "Modern and fully asynchronous framework for Telegram Bot API"
|
2021-10-11 01:26:41 +03:00
|
|
|
authors = [
|
|
|
|
|
"Alex Root Junior <jroot.junior@gmail.com>",
|
|
|
|
|
]
|
|
|
|
|
maintainers = [
|
|
|
|
|
"Alex Root Junior <jroot.junior@gmail.com>",
|
|
|
|
|
]
|
2019-11-15 12:18:21 +02:00
|
|
|
license = "MIT"
|
2021-10-11 01:26:41 +03:00
|
|
|
readme = "README.rst"
|
2020-01-22 00:38:36 +02:00
|
|
|
homepage = "https://aiogram.dev/"
|
|
|
|
|
documentation = "https://docs.aiogram.dev/"
|
2019-11-18 18:05:47 +02:00
|
|
|
repository = "https://github.com/aiogram/aiogram/"
|
2020-01-22 00:38:36 +02:00
|
|
|
keywords = [
|
2021-01-26 21:20:52 +02:00
|
|
|
"telegram",
|
|
|
|
|
"bot",
|
|
|
|
|
"api",
|
|
|
|
|
"framework",
|
|
|
|
|
"wrapper",
|
|
|
|
|
"asyncio",
|
2020-01-22 00:38:36 +02:00
|
|
|
]
|
2019-11-18 18:05:47 +02:00
|
|
|
classifiers = [
|
2021-12-12 19:06:29 +02:00
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
|
"Development Status :: 4 - Beta",
|
2021-01-26 21:20:52 +02:00
|
|
|
"Environment :: Console",
|
|
|
|
|
"Framework :: AsyncIO",
|
2021-12-12 19:06:29 +02:00
|
|
|
"Typing :: Typed",
|
2021-01-26 21:20:52 +02:00
|
|
|
"Intended Audience :: Developers",
|
|
|
|
|
"Intended Audience :: System Administrators",
|
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
|
"Programming Language :: Python :: 3.9",
|
2021-10-06 22:59:23 +03:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2022-10-26 22:22:44 +03:00
|
|
|
"Programming Language :: Python :: 3.11",
|
2022-10-02 18:24:26 +03:00
|
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
2021-01-26 21:20:52 +02:00
|
|
|
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
2022-10-02 18:24:26 +03:00
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
|
"Topic :: Communications :: Chat",
|
|
|
|
|
|
2019-11-18 18:05:47 +02:00
|
|
|
]
|
2022-10-02 00:04:31 +03:00
|
|
|
packages = [
|
|
|
|
|
{ include = "aiogram" }
|
|
|
|
|
]
|
|
|
|
|
|
2019-11-15 12:18:21 +02:00
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2021-05-25 01:00:36 +03:00
|
|
|
python = "^3.8"
|
2022-10-02 00:04:31 +03:00
|
|
|
magic-filter = "^1.0.9"
|
|
|
|
|
aiohttp = "^3.8.3"
|
|
|
|
|
pydantic = "^1.10.2"
|
|
|
|
|
aiofiles = "^22.1.0"
|
2021-09-22 00:52:38 +03:00
|
|
|
# Fast
|
2022-10-02 00:04:31 +03:00
|
|
|
uvloop = { version = "^0.17.0", markers = "sys_platform == 'darwin' or sys_platform == 'linux'", optional = true }
|
2021-09-22 00:52:38 +03:00
|
|
|
# i18n
|
|
|
|
|
Babel = { version = "^2.9.1", optional = true }
|
|
|
|
|
# Proxy
|
2022-04-16 19:07:32 +03:00
|
|
|
aiohttp-socks = { version = "^0.7.1", optional = true }
|
2021-09-22 00:52:38 +03:00
|
|
|
# Redis
|
2022-08-14 16:32:29 +03:00
|
|
|
redis = { version = "^4.3.4", optional = true }
|
2019-11-15 12:18:21 +02:00
|
|
|
|
2022-10-02 00:04:31 +03:00
|
|
|
|
|
|
|
|
[tool.poetry.group.docs.dependencies]
|
2022-10-02 18:24:26 +03:00
|
|
|
Sphinx = "^5.2.3"
|
2022-10-02 00:04:31 +03:00
|
|
|
sphinx-intl = "^2.0.1"
|
|
|
|
|
sphinx-autobuild = "^2021.3.14"
|
|
|
|
|
sphinx-copybutton = "^0.5.0"
|
2022-10-02 18:24:26 +03:00
|
|
|
furo = "^2022.9.29"
|
2022-10-02 00:04:31 +03:00
|
|
|
sphinx-prompt = "^1.5.0"
|
|
|
|
|
Sphinx-Substitution-Extensions = "^2022.2.16"
|
|
|
|
|
towncrier = "^22.8.0"
|
|
|
|
|
pygments = "^2.4"
|
2022-10-02 18:24:26 +03:00
|
|
|
pymdown-extensions = "^9.6"
|
2022-10-02 00:04:31 +03:00
|
|
|
markdown-include = "^0.7.0"
|
2022-10-02 18:24:26 +03:00
|
|
|
Pygments = "^2.13.0"
|
2022-10-02 00:04:31 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.test.dependencies]
|
2022-10-02 18:24:26 +03:00
|
|
|
pytest = "^7.1.3"
|
2021-05-11 23:04:32 +03:00
|
|
|
pytest-html = "^3.1.1"
|
2022-08-14 16:32:29 +03:00
|
|
|
pytest-asyncio = "^0.19.0"
|
2021-06-19 02:42:56 +03:00
|
|
|
pytest-lazy-fixture = "^0.6.3"
|
2022-10-02 18:24:26 +03:00
|
|
|
pytest-mock = "^3.9.0"
|
|
|
|
|
pytest-mypy = "^0.10.0"
|
|
|
|
|
pytest-cov = "^4.0.0"
|
2022-02-19 01:45:59 +02:00
|
|
|
pytest-aiohttp = "^1.0.4"
|
2022-08-14 16:32:29 +03:00
|
|
|
aresponses = "^2.1.6"
|
2021-09-22 00:52:38 +03:00
|
|
|
|
2022-10-02 00:04:31 +03:00
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2022-10-02 18:24:26 +03:00
|
|
|
black = "^22.8.0"
|
2022-10-02 00:04:31 +03:00
|
|
|
isort = "^5.10.1"
|
|
|
|
|
flake8 = "^5.0.4"
|
|
|
|
|
mypy = "^0.981"
|
|
|
|
|
toml = "^0.10.2"
|
2022-08-14 16:32:29 +03:00
|
|
|
pre-commit = "^2.20.0"
|
2022-02-19 01:45:59 +02:00
|
|
|
packaging = "^21.3"
|
2022-08-14 16:32:29 +03:00
|
|
|
typing-extensions = "^4.3.0"
|
2021-06-19 02:42:56 +03:00
|
|
|
|
2019-11-15 12:18:21 +02:00
|
|
|
|
2019-11-20 01:32:15 +02:00
|
|
|
[tool.poetry.extras]
|
|
|
|
|
fast = ["uvloop"]
|
2022-04-16 19:07:32 +03:00
|
|
|
redis = ["redis"]
|
2020-05-02 17:12:53 +04:00
|
|
|
proxy = ["aiohttp-socks"]
|
2021-09-22 00:52:38 +03:00
|
|
|
i18n = ["Babel"]
|
2019-11-20 01:32:15 +02:00
|
|
|
|
2019-06-29 19:53:18 +03:00
|
|
|
[tool.black]
|
|
|
|
|
line-length = 99
|
2022-04-16 19:07:32 +03:00
|
|
|
target-version = ['py38', 'py39', 'py310']
|
2019-06-29 19:53:18 +03:00
|
|
|
exclude = '''
|
|
|
|
|
(
|
2019-11-15 12:18:21 +02:00
|
|
|
\.eggs
|
|
|
|
|
| \.git
|
|
|
|
|
| \.tox
|
|
|
|
|
| build
|
|
|
|
|
| dist
|
|
|
|
|
| venv
|
|
|
|
|
| docs
|
2019-06-29 19:53:18 +03:00
|
|
|
)
|
2019-11-15 12:18:21 +02:00
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
|
multi_line_output = 3
|
|
|
|
|
include_trailing_comma = true
|
|
|
|
|
force_grid_wrap = 0
|
|
|
|
|
use_parentheses = true
|
|
|
|
|
line_length = 99
|
2021-01-26 21:20:52 +02:00
|
|
|
known_third_party = [
|
|
|
|
|
"aiofiles",
|
|
|
|
|
"aiohttp",
|
|
|
|
|
"aiohttp_socks",
|
|
|
|
|
"aresponses",
|
|
|
|
|
"packaging",
|
|
|
|
|
"pkg_resources",
|
|
|
|
|
"pydantic",
|
|
|
|
|
"pytest"
|
|
|
|
|
]
|
2019-11-15 12:18:21 +02:00
|
|
|
|
2021-08-01 19:08:03 +03:00
|
|
|
[tool.towncrier]
|
|
|
|
|
package = "aiogram"
|
|
|
|
|
filename = "CHANGES.rst"
|
|
|
|
|
directory = "CHANGES/"
|
|
|
|
|
template = "CHANGES/.template.rst.jinja2"
|
2021-08-03 23:50:10 +03:00
|
|
|
issue_format = "`#{issue} <https://github.com/aiogram/aiogram/issues/{issue}>`_"
|
|
|
|
|
|
|
|
|
|
[[tool.towncrier.section]]
|
|
|
|
|
path = ""
|
|
|
|
|
|
|
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "feature"
|
|
|
|
|
name = "Features"
|
|
|
|
|
showcontent = true
|
|
|
|
|
|
|
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "bugfix"
|
|
|
|
|
name = "Bugfixes"
|
|
|
|
|
showcontent = true
|
|
|
|
|
|
|
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "doc"
|
|
|
|
|
name = "Improved Documentation"
|
|
|
|
|
showcontent = true
|
|
|
|
|
|
|
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "removal"
|
|
|
|
|
name = "Deprecations and Removals"
|
|
|
|
|
showcontent = true
|
|
|
|
|
|
|
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "misc"
|
|
|
|
|
name = "Misc"
|
|
|
|
|
showcontent = true
|
2021-08-01 19:08:03 +03:00
|
|
|
|
2019-11-15 12:18:21 +02:00
|
|
|
[build-system]
|
2022-10-02 18:24:26 +03:00
|
|
|
requires = ["poetry-core"]
|
2021-01-26 21:20:52 +02:00
|
|
|
build-backend = "poetry.core.masonry.api"
|