-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.01 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
[tool.poetry]
name = "badger-proxy"
version = "0.1.9"
description = "mDNS-based reverse proxy for naming services on a local network."
authors = ["Hugo Lundin <hugo@lundin.dev>"]
homepage = "https://github.com/hugolundin/badger"
repository = "https://github.com/hugolundin/badger"
license = "MIT"
readme = "docs/pypi.md"
[tool.poetry.scripts]
badger = "badger_proxy.cli:badger"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.3"
mitmproxy = "^8.0.0"
docker = "^5.0.3"
toml = "^0.10.2"
zeroconf = "^0.38.6"
coloredlogs = "^15.0.1"
result = "^0.8.0"
watchdog = "^2.1.7"
netifaces = "^0.11.0"
click-extra = "^2.1.1"
setproctitle = "^1.2.3"
[tool.poetry.dev-dependencies]
pre-commit = "^2.19.0"
isort = "^5.10.1"
black = "^22.3.0"
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile="black"
sections="FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
length_sort=true