-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
43 lines (36 loc) · 978 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 = "pyntelope"
version = "0.8.6"
description = "Interact with Antelope blockchains"
authors = ["Team <pyntelope@facings.io>"]
homepage = "https://github.com/FACINGS/pyntelope"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
pydantic = "^1.9.0"
httpx = ">=0.22"
pycryptodome = "^3.15.0"
base58 = "^2.1.1"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
flake8-black = "^0.2.3"
flake8-isort = "^4.1.1"
flake8-docstrings = "^1.6.0"
pytest-timeout = "^2.0.1"
pytest-rerunfailures = "^10.2"
pytest-httpx = "^0.20.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-vvv --cov-report=term-missing --cov=pyntelope"
testpaths = ["tests/unit"]
log_level = "DEBUG"
markers = "slow: these tests are very slow"
[tool.black]
line-length = 79
[tool.pydocstyle]
match_dir = '^(?!tests)[^\.].+$'