-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
52 lines (44 loc) · 1.3 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "lobbyboy"
version = "0.4.0"
description = "Give me a server."
authors = ["laixintao <[email protected]>"]
license = "GNU"
[tool.poetry.scripts]
lobbyboy-server = 'lobbyboy.main:main'
lobbyboy-config-example = 'lobbyboy.scripts:print_example_config'
[tool.poetry.dependencies]
python = "^3.7"
paramiko = {extras = ["gssapi"], version = "^2.8.0"}
python-digitalocean = "^1.17.0"
toml = "^0.10.2"
linode-api4 = "^5.2.1"
pyvultr = "^0.1.5"
pre-commit = "^2.16.0"
[tool.poetry.dev-dependencies]
black = "^21.9b0"
bumpversion = "^0.6.0"
pytest = "^6.2.5"
flake8 = "^4.0.1"
freezegun = "^1.1.0"
pytest-cov = "^3.0.0"
[tool.black]
target-version = ["py37"]
line-length = 120
[tool.coverage.run]
source = ["lobbyboy"]
[tool.isort]
profile = "black"
atomic = true
[tool.bandit]
recursive = true
# B108: Probable insecure usage of temp file/directory.
# B602: Subprocess call with shell=True identified, security issue.
# B404: Consider possible security implications associated with the subprocess module.
# B603: Subprocess call - check for execution of untrusted input.
# B607: Starting a process with a partial executable path.
skips = ["B108", "B602", "B404", "B603", "B607"]
assert_used.skips = ['tests/test_*.py']