-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
43 lines (36 loc) · 952 Bytes
/
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
[tool.poetry]
name = "clin"
version = "1.0.dev0"
description = "Cli for Nakadi resources management in Infrastructure as Code style"
homepage = "https://github.com/zalando-incubator/clin"
license = "MIT"
readme = "README.md"
authors = [
"Dmitry Erokhin <[email protected]>",
"Daniel Stockhammer <[email protected]>"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Build Tools",
]
keywords = [ "Nakadi" ]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.31"
pyyaml = "^6.0"
click = "^8.1"
deepdiff = "^6.7"
pygments = "^2.17"
colorama = "^0.4"
[tool.poetry.dev-dependencies]
pytest = "^7.2"
toml = "^0.10"
black = "^23.3"
[tool.poetry.scripts]
clin = "clin.run:cli"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"