-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.29 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.8.0"]
[tool.isort]
known_local_folder = ["program_admin"]
[tool.poetry]
authors = ["Thomaz <thomaz@pyth.network>"]
description = "Syncs products and publishers of the Pyth program"
name = "program-admin"
version = "0.1.6"
[tool.poetry.dependencies]
click = "^8.1.0"
construct = "^2.10.0"
loguru = "^0.6.0"
pythclient = "0.1.4"
python = "~3.10"
solana = "^0.28.1"
ujson = "^5.2.0"
solders = "^0.10.0"
requests = "^2.32.3"
[tool.poetry.group.dev.dependencies]
black = { version = "^22.3.0" }
isort = { version = "^5.10.0" }
ipython = "^8.2.0"
types-ujson = "^4.2.0"
pytest = "^7.1.2"
pytest-asyncio = "^0.18.3"
types-requests = "^2.32.0.20240622"
pyright = "^1.1.369"
pyflakes = "^3.2.0"
[tool.poetry.scripts]
program-admin = "program_admin.cli:cli"
[tool.pylint.core]
extension-pkg-allow-list = "ujson"
[tool.pylint.messages_control]
disable = [
"duplicate-code",
"fixme",
"missing-class-docstring",
"missing-module-docstring",
"missing-function-docstring",
"too-few-public-methods",
"too-many-arguments",
"too-many-branches",
"too-many-instance-attributes",
"too-many-locals",
"line-too-long",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "-ra -q"
testpaths = ["tests"]