forked from curvefi/curve-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (44 loc) · 856 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
44
45
46
47
48
49
[tool.poetry]
name = "curve-assets"
version = "0.1.0"
description = ""
authors = ["bout3fiddy <11488427+bout3fiddy@users.noreply.github.com>"]
readme = "README.md"
packages = []
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
web3 = "^6.0.0"
aiohttp = "^3.10.11"
eth-abi = "^5.0.1"
pre-commit = "^3.8.0"
requests = "^2.26.0"
rich = "^10.12.0"
pydantic = "^2.9.1"
pygithub = "^2.4.0"
[tool.poetry.group.dev.dependencies]
black = "24.4.2"
isort = "5.13.2"
[tool.black]
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
)/
)
'''
line-length = 120
target_version = ['py310']
[tool.isort]
profile = "black"
py_version = 310
line_length = 120
known_first_party = "poetry"