-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
67 lines (60 loc) · 1.36 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "pystarport"
version = "0.2.5"
description = "Spawn local devnets for cosmos-sdk chains"
authors = ["chain-dev-team <[email protected]>"]
license = "Apache"
keywords = ["CRO", "blockchain", "crypto.com", "cosmos"]
readme = "README.md"
homepage = "https://github.com/crypto-com/pystarport"
repository = "https://github.com/crypto-com/pystarport"
[tool.poetry.dependencies]
python = "^3.9"
fire = "^0"
tomlkit = "^0"
jsonmerge = "^1.7"
python-dateutil = "^2.8"
durations = "^0"
supervisor = "^4.2"
docker = "^7.0"
bech32 = "^1.1"
multitail2 = "^1.5"
python-dotenv = "^1.0"
pyyaml-include = "^1.3"
jsonnet = "^0"
pyyaml = "^6.0"
[tool.poetry.dev-dependencies]
pytest = "^8.0"
deepdiff = "^6.7"
flake8 = "^7"
flake8-black = "^0"
flake8-isort = "^6.1"
[tool.poetry.scripts]
pystarport = "pystarport.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
[tool.isort]
profile = "black"