aiogram/pyproject.toml

103 lines
2.5 KiB
TOML
Raw Normal View History

2019-11-15 12:18:21 +02:00
[tool.poetry]
name = "aiogram"
version = "3.0.0-alpha.5"
2020-01-22 00:38:36 +02:00
description = "Modern and fully asynchronous framework for Telegram Bot API"
2019-11-15 12:18:21 +02:00
authors = ["Alex Root Junior <jroot.junior@gmail.com>"]
license = "MIT"
2019-11-15 12:44:24 +02:00
readme = "README.md"
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 = [
"telegram",
"bot",
"api",
"framework",
"wrapper",
"asyncio",
]
2019-11-18 18:05:47 +02:00
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
2020-01-11 19:47:39 +02:00
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
2019-11-18 18:05:47 +02:00
"Topic :: Software Development :: Libraries :: Application Frameworks",
2020-01-22 00:38:36 +02:00
"Framework :: AsyncIO",
"Typing :: Typed",
2019-11-18 18:05:47 +02:00
]
2019-11-15 12:18:21 +02:00
[tool.poetry.dependencies]
python = "^3.7"
aiohttp = "^3.6"
pydantic = "^1.5"
2019-11-15 12:18:21 +02:00
Babel = "^2.7"
2019-11-15 14:09:05 +02:00
aiofiles = "^0.4.0"
2020-01-22 00:14:14 +02:00
uvloop = {version = "^0.14.0", markers = "sys_platform == 'darwin' or sys_platform == 'linux'", optional = true}
2019-12-04 18:04:29 +02:00
async_lru = "^1.0"
aiohttp-socks = {version = "^0.3.8", optional = true}
2019-11-15 12:18:21 +02:00
[tool.poetry.dev-dependencies]
2020-01-22 00:14:14 +02:00
uvloop = {version = "^0.14.0", markers = "sys_platform == 'darwin' or sys_platform == 'linux'"}
pytest = "^5.3"
2019-11-17 23:40:52 +02:00
pytest-html = "^2.0"
pytest-asyncio = "^0.10.0"
pytest-mypy = "^0.4.2"
pytest-mock = "^2.0"
2019-11-17 23:40:52 +02:00
pytest-cov = "^2.8"
aresponses = "^1.1"
asynctest = {version = "^0.13.0", python = "<3.8"}
2020-01-25 19:04:48 +02:00
black = {version = "^19.0", allow-prereleases = true}
2019-11-15 12:18:21 +02:00
isort = "^4.3"
flake8 = "^3.7"
2019-11-17 23:40:52 +02:00
flake8-html = "^0.4.0"
2020-03-18 17:04:11 +03:00
mypy = "^0.770"
2019-11-15 12:18:21 +02:00
mkdocs = "^1.0"
mkdocs-material = "^4.6"
2019-11-17 23:40:52 +02:00
mkautodoc = "^0.1.0"
2019-11-15 12:18:21 +02:00
pygments = "^2.4"
pymdown-extensions = "^6.1"
2019-11-17 23:40:52 +02:00
lxml = "^4.4"
2020-01-05 20:12:35 +02:00
ipython = "^7.10"
2020-01-28 14:03:29 +02:00
markdown-include = "^0.5.1"
aiohttp-socks = "^0.3.4"
2020-05-06 17:27:51 +03:00
pre-commit = "^2.3.0"
packaging = "^20.3"
2020-05-26 20:26:29 +03:00
typing-extensions = "^3.7.4"
poetry = "^1.0.5"
2019-11-15 12:18:21 +02:00
[tool.poetry.extras]
fast = ["uvloop"]
proxy = ["aiohttp-socks"]
2019-06-29 19:53:18 +03:00
[tool.black]
line-length = 99
target-version = ['py37', 'py38']
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
2020-05-26 00:23:35 +03:00
known_third_party = ["aiofiles", "aiohttp", "aiohttp_socks", "aresponses", "async_lru", "packaging", "pkg_resources", "pydantic", "pytest"]
2019-11-15 12:18:21 +02:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"