-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 839 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 839 Bytes
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
[tool.poetry]
name = "lyrics-bot-playlister"
version = "0.1.0"
description = ""
authors = ["Dom Weldon <dom.weldon@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.8"
lxml = "^4.6.2"
requests = "^2.25.1"
fastapi = "^0.63.0"
typer = "^0.3.2"
toml = "^0.10.2"
tweepy = "^3.10.0"
mangum = "^0.10.0"
sentry-sdk = "^0.19.5"
PyYAML = "^5.4.1"
[tool.poetry.dev-dependencies]
bpython = "^0.20.1"
flake8 = "^3.8.4"
black = "^20.8b1"
isort = "^5.6.4"
mypy = "^0.790"
pre-commit = "^2.9.3"
pytest = "^6.2.1"
boto3 = "^1.16.51"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
profile = "hug"
src_paths = ["lyrics_bot_playlister", "tests"]
multi_line_output = 3
line_length = 79
ensure_newline_before_comments = true
include_trailing_comma = true
use_parentheses = true