forked from tezos-checker/checker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (36 loc) · 812 Bytes
/
pyproject.toml
File metadata and controls
44 lines (36 loc) · 812 Bytes
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
[tool.poetry]
name = "checker-tools"
version = "0.1.0"
description = "A collection of tools for building and interacting with Checker"
authors = []
packages = [
{ include = "checker_tools" }
]
[tool.poetry.scripts]
checker-build = 'checker_tools.builder.cli:cli'
checker = 'checker_tools.client.cli:cli'
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.0.3"
docker = "^5.0.3"
eth-hash = "*"
Jinja2 = "^3.0.1"
marshmallow = "^3.12.1"
matplotlib = "=3.3.4"
portpicker = "^1.3.9"
PyGithub = "^1.55"
pytezos = "^3.3.2"
PyYAML = "^5.4.1"
tqdm = "*"
[tool.poetry.dev-dependencies]
black = "^21.5b1"
isort = "^5.8.0"
pytest = "^6.2.5"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[flake8]
max-line-length = 99
[tool.black]
line-length = 99
target-version = ["py38"]