-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
71 lines (63 loc) · 1.28 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
68
69
70
71
[tool.poetry]
name = "hundred-x"
version = "0.1.29"
description = "# hundred_x"
authors = ["8baller <[email protected]>"]
readme = "README.md"
packages = [{include = "hundred_x"}]
[tool.poetry.dependencies]
python = ">=3.9,<=3.13"
requests = "^2.31.0"
eth-account = "<=0.11.0"
eip712-structs-ng = "^2.0.1"
web3 = ">=6,<7"
websockets = ">=9"
safe-pysha3 = "^1.0.4"
httpx = "^0.27.0"
[tool.poetry.group.dev.dependencies]
isort = "^5.13.2"
pylint = "^3.1.0"
pytest = "^8.1.1"
black = "^24.3.0"
flake8 = "^7.0.0"
semver = "^3.0.2"
tbump = "^6.11.0"
pytest-asyncio = "^0.23.7"
respx = "^0.21.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
skip_gitignore = true
# you can skip files as below
#skip_glob = docs/conf.py
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = ['py37', 'py38', 'py39']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pytest.ini_options]
markers = [
"devs: test devnet (deselect with '-m dev')",
]
addopts = "-m 'not dev' -p no:warnings"