-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
55 lines (44 loc) · 998 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "vigibot"
version = "0.1.0"
description = "telegram and twitter bots"
authors = ["Flávio Codeço Coelho <fccoelho@gmail.com>"]
license = "gplv3"
[tool.poetry.dependencies]
[tool.poetry.dev-dependencies]
[tool.black]
# https://github.com/psf/black
target-version = ["py37"]
line_length = 79
skip-string-normalization = true
color = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| env
| venv
| migrations/*
)/
'''
[tool.isort]
# https://github.com/timothycrosley/isort/
py_version = 37
line_length = 79
known_typing = ["typing", "types", "typing_extensions", "mypy", "mypy_extensions"]
sections = ["FUTURE", "TYPING", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
include_trailing_comma = true
profile = "black"
multi_line_output = 3
indent = 4
color_output = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"