-
Notifications
You must be signed in to change notification settings - Fork 41
/
pyproject.toml
116 lines (110 loc) · 2.44 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[tool.poetry]
name = "driftpy"
version = "0.7.95"
description = "A Python client for the Drift DEX"
authors = [
"x19 <https://twitter.com/[email protected]>",
"bigz <https://twitter.com/bigz_pubkey>",
"frank <https://twitter.com/soundsonacid>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/drift-labs/driftpy"
documentation = "https://drift-labs.github.io/driftpy/"
[tool.poetry.dependencies]
python = "^3.10"
anchorpy = "0.20.1"
solana = "^0.34.0"
requests = "^2.28.1"
types-requests = "^2.28.9"
mkdocs = "^1.3.0"
pythclient = "0.1.4"
aiodns = "3.0.0"
aiohttp = "3.8.3"
aiosignal = "1.3.1"
anchorpy-core = "0.2.0"
anyio = "3.6.2"
apischema = "0.17.5"
async-timeout = "^4.0.2"
attrs = "22.1.0"
backoff = "2.2.1"
base58 = "2.1.1"
based58 = "0.1.1"
borsh-construct = "0.1.0"
cachetools = "4.2.4"
certifi = "2022.12.7"
cffi = "1.15.1"
charset-normalizer = "2.1.1"
construct = "2.10.68"
construct-typing = "0.5.3"
dnspython = "2.2.1"
exceptiongroup = "1.0.4"
flake8 = "6.0.0"
frozenlist = "1.3.3"
h11 = "0.14.0"
httpcore = "0.16.3"
httpx = "0.23.1"
idna = "3.4"
iniconfig = "1.1.1"
jsonalias = "0.1.1"
jsonrpcclient = "4.0.3"
jsonrpcserver = "5.0.9"
jsonschema = "4.17.3"
loguru = "0.6.0"
mccabe = "0.7.0"
more-itertools = "8.14.0"
multidict = "6.0.3"
oslash = "0.6.3"
packaging = "23.1"
pluggy = "1.0.0"
psutil = "5.9.4"
py = "1.11.0"
pycares = "4.3.0"
pycodestyle = "2.10.0"
pycparser = "2.21"
pyflakes = "3.0.1"
pyheck = "0.1.5"
pyrsistent = "0.19.2"
rfc3986 = "1.5.0"
sniffio = "1.3.0"
solders = "^0.21.0"
sumtypes = "0.1a6"
toml = "0.10.2"
tomli = "2.0.1"
toolz = "0.11.2"
types-cachetools = "4.2.10"
typing-extensions = "^4.4.0"
urllib3 = "1.26.13"
websockets = "10.4"
yarl = "1.8.2"
zstandard = "0.18.0"
jinja2 = "^3.1.2"
mypy = "^1.7.0"
deprecated = "^1.2.14"
events = "^0.5"
numpy = "^1.26.2"
jito-searcher-client = "0.1.4"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
flake8 = "6.0.0"
black = "24.4.2"
pytest-asyncio = "^0.21.0"
mkdocs = "^1.3.0"
mkdocstrings = "^0.17.0"
mkdocs-material = "^8.1.8"
bump2version = "^1.0.1"
autopep8 = "^2.0.4"
mypy = "^1.7.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
pytest-asyncio = "0.21.0"
pytest-xprocess = "0.18.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.ruff]
exclude = [".git", "__pycache__", "docs/source/conf.py", "old", "build", "dist"]
[tool.ruff.pycodestyle]
max-line-length = 88