-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.5 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
[tool.poetry]
name = "cow-py"
version = "0.1.0"
description = ""
authors = ["José Ribeiro <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
httpx = "^0.27.0"
web3 = "^6.15.1"
pybars3 = "^0.9.7"
pydantic = "^2.7.0"
pytest-mock = "^3.14.0"
backoff = "^2.2.1"
aiolimiter = "^1.1.0"
multiformats = "^0.3.1.post4"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.7"
pyright = "^1.1.358"
pytest = "^8.1.1"
ipython = "^8.23.0"
pre-commit = "^3.7.0"
datamodel-code-generator = "^0.25.5"
ariadne-codegen = "^0.13.0"
pytest-httpx = "^0.30.0"
pytest-asyncio = "^0.23.6"
web3 = { extras = ["tester"], version = "^6.17.0" }
pycln = "^2.4.0"
pytest-cov = "^5.0.0"
python-dotenv = "^1.0.1"
[tool.poetry.scripts]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ariadne-codegen]
remote_schema_url = "https://api.thegraph.com/subgraphs/name/cowprotocol/cow"
queries_path = "cow_py/subgraph/queries"
target_package_name = "client"
target_package_path = "cow_py/subgraph"
client_name = "SubgraphClient"
client_file_name = "subgraph_client"
[tool.pyright]
# NOTE: these paths are excluded but not IGNORED. They are still included in the analysis if they are referenced by source files that are not excluded.
exclude = [
"**/node_modules",
"**/__pycache__",
"cow_py/subgraph/client/*.py",
"cow_py/order_book/generated/*.py",
".venv/",
"**/__generated__",
]
reportIncompatibleVariableOverride = 'warning'
strictParameterNoneValue = false