-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
59 lines (54 loc) · 1.14 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
59
[tool.poetry]
name = "dinghy-ping"
version = "1.0.0"
description = "read-only k8s interface and debugging platform"
authors = ["Zane Williamson <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
redis = "^4.2.0"
dnspython = "^2.2.1"
datadog = "^0.44.0"
ddtrace = "^0.60.0"
gunicorn = "^20.1.0"
Flask = {extras = ["async"], version = "^2.0.3"}
kubernetes = "^23.3.0"
flask-sock = "^0.5.2"
Flask-WTF = "^1.0.1"
python-dotenv = "^0.20.0"
[tool.poetry.dev-dependencies]
pylint = "^2.13.0"
pytest = "^7.1.1"
ipython = "^8.1.1"
autopep8 = "^1.6.0"
flake8 = "^4.0.1"
black = "^22.3.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.isort]
profile = "black"
[tool.liccheck]
authorized_licenses = [
'Mozilla Public License 2.0 (MPL 2.0)',
'3-Clause BSD',
'BSD',
'new BSD',
'BSD license',
'new BDS license',
'simplified BSD',
'Apache Software',
'Apache',
'Apache 2.0',
'Apache software license',
'gnu LGPL',
'LGPL with exceptions or zpl',
'ISC license',
'ISC license (ISCL)',
'MIT license',
'zpl 2.1',
'MIT',
'Python Software Foundation',
'ISC'
]