-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (38 loc) · 965 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
[tool.poetry]
name = "redownload"
version = "0.1.0"
description = ""
authors = ["Josh Levin <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10, <3.11"
beautifulsoup4 = "^4.10.0"
requests = "^2.27.1"
certifi = "^2021.10.8"
PyYAML = "^6.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
isort = "^5.9.3"
pytest = "^6.2.4"
pre-commit = "^2.13.0"
pyinstaller = "^4.9"
GitPython = "^3.1.27"
black = "^22.3.0"
[tool.black]
line-length = 100
target-version = ['py39']
include = '\.pyi'
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 100
include_trailing_comma = "True"
force_grid_wrap = 0
use_parentheses = "True"
combine_as_imports = "True"
force_alphabetical_sort_within_sections = "True"
ensure_newline_before_comments = "True"
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
lines_after_imports = 2
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"