-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.24 KB
/
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
56
[tool.poetry]
name = "github-asana-bot"
version = "0.1.0"
description = ""
authors = ["karech"]
[tool.poetry.dependencies]
python = "^3.9"
github-webhooks-framework = "^0.1.11"
asana = "^0.10.3"
uvicorn = "^0.17.4"
pydantic = {extras = ["dotenv"], version = "^1.9.0"}
aioify = "^0.4.0"
sentry-sdk = "^1.5.5"
PyGithub = "^1.55"
[tool.poetry.dev-dependencies]
mypy = "^0.931"
isort = "^5.10.1"
black = "^22.1.0"
tox = "^3.24.5"
flake8 = "^4.0.1"
flake8-blind-except = "^0.2.0"
flake8-bugbear = "^22.1.11"
flake8-builtins = "^1.5.3"
flake8-commas = "^2.1.0"
flake8-comprehensions = "^3.8.0"
flake8-debugger = "^4.0.0"
flake8-formatter-abspath = "^1.0.1"
flake8-isort = "^4.1.1"
flake8-logging-format = "^0.6.0"
flake8-mutable = "^1.2.0"
flake8-print = "^4.0.0"
flake8-quotes = "^3.3.1"
flake8-string-format = "^0.3.0"
flake8-broken-line = "^0.4.0"
flake8-eradicate = "^1.2.0"
flake8-multiline-containers = "^0.0.18"
flake8-use-fstring = "^1.3"
flake8-assertive = "^2.0.0"
flake8-tidy-imports = "^4.6.0"
ipython = "^8.0.1"
[tool.isort]
profile = "hug"
src_paths = ["bot"]
line_length = 120
[tool.black]
skip-string-normalization = true
line-length = 120
target-version = ["py39"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"