-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (75 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
84 lines (75 loc) · 1.72 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[tool.poetry]
name = "vkbottle-sync"
version = "0.1"
description = "Sync Version"
authors = ["timoniq"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/vkbottle/sync"
repository = "https://github.com/vkbottle/sync"
keywords = ["vk", "vk-api", "vkbottle", "user-longpoll", "longpoll-api", "callback", "middleware"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Typing :: Typed",
]
build = "build.py"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/timoniq/vkbottle/issues"
[tool.poetry.dependencies]
python = "^3.7"
aiohttp = "^3.6.2"
vbml = "^1.0"
choicelib = "^0.1.1"
vkbottle-types = "^0.1.21"
watchgod = "^0.6"
GitPython = "^3.1.11"
[tool.poetry.dev-dependencies]
# Lint
lxml = "^4.5.0"
mypy = "^0.770"
isort = "^4.3"
flake8 = "^3.7.9"
mypy_extensions = "^0.4.3"
black = {version = "^19.0", allow-prereleases = true}
# Tests
pytest = "^5.4"
pytest-cov = "^2.8"
pytest-asyncio = "^0.14.0"
pytest-mock = "^3.3.1"
# Docs
mkdocs = "^1.1.2"
mkdocs-material = "^6.1.3"
# Pre-commit
pre-commit = "^2.7.1"
autoflake = "^1.4"
autopep8 = "^1.5.4"
reorder-python-imports = "^2.3.5"
[tool.black]
line-length = 99
target-version = ['py37', 'py38']
exclude = '''
(
\.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"