mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Update license years
This commit is contained in:
parent
bdae5fb026
commit
d09b72ce6e
2 changed files with 47 additions and 12 deletions
2
LICENSE
2
LICENSE
|
|
@ -1,4 +1,4 @@
|
|||
Copyright (c) 2017-2018 Alex Root Junior
|
||||
Copyright (c) 2017-2019 Alex Root Junior
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
software and associated documentation files (the "Software"), to deal in the Software
|
||||
|
|
|
|||
|
|
@ -1,17 +1,52 @@
|
|||
[tool.poetry]
|
||||
name = "aiogram"
|
||||
version = "3.0.0-alpha.0"
|
||||
description = "is a pretty simple and fully asynchronous framework for Telegram Bot API"
|
||||
authors = ["Alex Root Junior <jroot.junior@gmail.com>"]
|
||||
license = "MIT"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.7"
|
||||
aiohttp = "^3.6"
|
||||
pydantic = "^1.1"
|
||||
Babel = "^2.7"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
black = {version = "^18.3-alpha.0", allows-prereleases = true}
|
||||
isort = "^4.3"
|
||||
flake8 = "^3.7"
|
||||
mypy = "^0.740.0"
|
||||
pytest = "^5.2"
|
||||
pytest-asyncio = "^0.10.0"
|
||||
aresponses = "^1.1"
|
||||
uvloop = "^0.14.0"
|
||||
mkdocs = "^1.0"
|
||||
mkdocs-material = "^4.4"
|
||||
pygments = "^2.4"
|
||||
pymdown-extensions = "^6.1"
|
||||
|
||||
[tool.black]
|
||||
line-length = 99
|
||||
target-version = ['py37', 'py38']
|
||||
exclude = '''
|
||||
(
|
||||
/(
|
||||
\.eggs
|
||||
| \.git
|
||||
| \.tox
|
||||
| build
|
||||
| dist
|
||||
| venv
|
||||
| docs
|
||||
)/
|
||||
| foo.py
|
||||
\.eggs
|
||||
| \.git
|
||||
| \.tox
|
||||
| build
|
||||
| dist
|
||||
| venv
|
||||
| docs
|
||||
)
|
||||
'''
|
||||
'''
|
||||
|
||||
[tool.isort]
|
||||
multi_line_output = 3
|
||||
include_trailing_comma = true
|
||||
force_grid_wrap = 0
|
||||
use_parentheses = true
|
||||
line_length = 99
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry>=0.12"]
|
||||
build-backend = "poetry.masonry.api"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue