-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (66 loc) · 1.6 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "kongcli"
version = "0.1.0"
description = "Interact with kong's admin api."
authors = ["Tammo Ippen <tammo.ippen@posteo.de>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tammoippen/kongcli"
homepage = "https://github.com/tammoippen/kongcli"
keywords=["kong", "api", "microservice", "terminal", "admin"]
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
]
[tool.poetry.scripts]
kongcli = 'kongcli._cli:cli'
[tool.poetry.dependencies]
python = "^3.6"
cachetools = "^4.1"
click = "^7.1"
loguru = "^0.5"
orjson = "^3.3.0"
pyfiglet = "^0.8.0"
requests = "^2.24"
tabulate = "^0.8.3"
[tool.poetry.dev-dependencies]
black = "=20.8b1"
flake8 = "^3.7"
flake8-bugbear = "^20.1"
flake8-commas = "^2.0"
flake8-comprehensions = "^3.2"
flake8-import-order = "^0.18.0"
flake8-pep3101 = "^1.2"
flake8-print = "^3.1.4"
mypy = "^0"
pep8-naming = "^0.11.1"
psycopg2-binary = "^2.8"
pytest = "^6.0"
pytest-cov = "^2.6"
pytest-randomly = "^3.0"
pytest-sugar = "^0.9.2"
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.mypy_cache
| \.venv
| _build
| build
| dist
)/
'''