forked from fetchai/jenesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 1 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
[tool.poetry]
name = "jenesis"
version = "0.7.1"
description = "Command line tool for rapid CosmWasm-based smart contract development"
authors = ["Ed FitzGerald <[email protected]>", "James Riehl <[email protected]>", "Alejandro Madrigal <[email protected]>"]
license = "Apache"
readme = "README.md"
[tool.poetry.scripts]
jenesis = 'jenesis.cli:main'
[tool.poetry.dependencies]
python = "^3.8"
docker = ">=5.0.3,<6.1.0"
blessings = "^1.7"
ptpython = "^3.0.23"
toml = "^0.10.2"
tqdm = "^4.64.0"
cosmpy = "^0.9.2"
mkdocs = "^1.3.1"
mkdocs-material = "^8.3.9"
keyring = "^23.9.0"
jsonschema = "^4.15.0"
graphlib-backport = "^1.0.3"
jwskate = ">=0.4.1,<0.6.0"
makefun = "^1.15.0"
[tool.poetry.dev-dependencies]
coverage = "^7.0.3"
pytest = "^7.1.3"
pylint = "^2.15.9"
[tool.poetry.group.dev.dependencies]
black = "^22.8.0"
isort = "^5.10.1"
mypy = "^0.971"
flake8 = "^5.0.4"
darglint = "^1.8.1"
pylint = "^2.15.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"