-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (73 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
80 lines (73 loc) · 1.76 KB
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
72
73
74
75
76
77
78
79
80
[tool.poetry]
name = "vertex-protocol"
version = "3.3.1"
description = "Vertex Protocol SDK"
authors = ["Jeury Mejia <jeury@vertexprotocol.com>"]
homepage = "https://vertexprotocol.com/"
maintainers = [
"Frank Jia <frank@vertexprotocol.com>",
"Clark Oh-Willeke <clark@vertexprotocol.com>"
]
documentation = "https://vertex-protocol.github.io/vertex-python-sdk/"
readme = "README.md"
packages = [{include = "vertex_protocol"}]
include = ["vertex_protocol/*.json"]
keywords = ["vertex protocol", "vertex sdk", "vertex protocol api"]
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^1.10.7"
web3 = "^6.4.0"
eth-account = "^0.8.0"
[tool.poetry.group.dev.dependencies]
ruff = "*"
black = "*"
pytest = "^7.3.1"
pre-commit = "^3.3.2"
python-dotenv = "^1.0.0"
sphinx = "^6.2.1"
sphinx-rtd-theme = "^1.2.1"
sphinx-autodoc-typehints = "^1.12.0"
mypy = "^1.3.0"
types-requests = "^2.31.0.1"
coverage = "^7.2.7"
[tool.poetry.scripts]
test = "pytest:main"
engine-sanity = "sanity.engine_client:run"
indexer-sanity = "sanity.indexer_client:run"
trigger-sanity = "sanity.trigger_client:run"
contracts-sanity = "sanity.contracts:run"
client-sanity = "sanity.vertex_client:run"
rewards-sanity = "sanity.rewards:run"
signing-sanity = "sanity.signing:run"
isolated-sanity = "sanity.isolated:run"
[[tool.poetry.source]]
name = "private"
url = "https://github.com/vertex-protocol/vertex-python-sdk"
priority = "primary"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| venv
| venv3.9
| venv3.10
| venv3.11
)/
'''