forked from ApeWorX/ApePay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (35 loc) · 957 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
[tool.poetry]
name = "apepay"
version = "0.2.2"
description = "Python SDK for ApePay"
authors = ["ApeWorX LTD <admin@apeworx.io>"]
license = "Apache 2.0"
readme = "README.md"
include = ["sdk/py/apepay/manifest.json"]
packages = [
{ include = "apepay", from = "sdk/py" },
]
[tool.poetry.dependencies]
python = ">=3.8,<4"
eth-ape = "^0.6.21"
pydantic = "^1.10.13"
silverback = ">=0.1.0,<0.3"
[tool.poetry.group.test.dependencies]
ape-foundry = "^0.6.16"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ['py310']
include = '\.pyi?$'
exclude = 'node_modules|migrations|build/|buck-out/|dist/|_build/|\.git/|\.hg/|\.mypy_cache/|\.tox/|\.venv/'
[tool.isort]
line_length = 100
force_grid_wrap = 0
include_trailing_comma = true
multi_line_output = 3
use_parentheses = true
src_paths = ["scripts", "tests", "apepay"]