-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (50 loc) · 1.28 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
57
58
[tool.poetry]
name = "pyupdater-http"
version = "0.7.0"
description = "PyUpdater Plugin: HTTP upload support"
authors = ["Kirill Pinchuk <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/micro-fan/pyupdater-http"
repository = "https://github.com/micro-fan/pyupdater-http"
keywords = ["pyupdater", "pyupdater-plugin", "http"]
[tool.poetry.dependencies]
python = ">=3.7"
httpx = ">=0.23.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[tool.poetry.plugins."pyupdater.plugins"]
"http_uploader" = "pyupdater_http.uploader:HTTPUploader"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
skip-string-normalization = true
skip-magic-trailing-comma = true
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
combine_as_imports = true
default_section = 'THIRDPARTY'
force_alphabetical_sort_within_sections = true
force_grid_wrap = 0
include_trailing_comma = true
line_length = 100
lines_after_imports = 2
multi_line_output = 3
sections = ['FUTURE', 'STDLIB', 'THIRDPARTY', 'OWN', 'FIRSTPARTY', 'LOCALFOLDER']
known_first_party = ''
known_own = ['pytest_tipsi_testing', 'fan_tools']