-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
37 lines (32 loc) · 916 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
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
jsonschema-cli = 'jsonschema_cli.cli:run'
[tool.poetry]
name = "jsonschema-cli"
version = "0.6.2"
description = "A thin wrapper over [Python Jsonschema](https://github.com/Julian/jsonschema) to allow validating shcemas easily using simple CLI commands."
authors = ["Eyal Mor <[email protected]>"]
readme = 'README.md'
[tool.poetry.dependencies]
python = "^3.6"
pyyaml = "^5.3.1"
jsonschema = "^3.2.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.2"
black = "^19.10b0"
flake8-black = "^0.2.0"
flake8-import-order = "^0.18.1"
flake8-blind-except = "^0.1.1"
flake8-builtins = "^1.5.3"
flake8-logging-format = "^0.6.0"
flake8-docstrings = "^1.5.0"
flake8-rst-docstrings = "^0.0.13"
ipython = "^7.14.0"
ipdb = "^0.13.2"
pytest = "^5.4.2"
pytest-mock = "^3.1.0"
twine = "^3.1.1"
[tool.black]
line-length = 120