forked from kevinheavey/anchorpy
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.42 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
[tool.poetry]
name = "anchorpy"
version = "0.12.0-dev2"
description = "The Python Anchor client."
readme = "README.md"
repository = "https://github.com/kevinheavey/anchorpy"
documentation = "https://kevinheavey.github.io/anchorpy/"
authors = ["kevinheavey <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
construct-typing = "^0.5.1"
solana = "^0.27.2"
borsh-construct = "^0.1.0"
websockets = "^10.0"
toolz = "^0.11.2"
jsonrpcclient = "^4.0.1"
zstandard = "^0.17.0"
more-itertools = "^8.11.0"
pyheck = "^0.1.4"
typer = { version = "0.4.1", optional = true }
ipython = { version = "^8.0.1", optional = true }
genpy = {version = "^2021.1", optional = true }
autoflake = { version = "^1.4", optional = true }
based58 = "^0.1.1"
anchorpy-core = "^0.1.2"
[tool.poetry.extras]
cli = ["typer", "ipython", "genpy", "black", "autoflake"]
[tool.poetry.scripts]
anchorpy = "anchorpy.cli:app"
[tool.poetry.dev-dependencies]
wemake-python-styleguide = "^0.16.0"
mypy = "^0.982"
pydocstyle = "^6.1.1"
isort = "^5.9.3"
jinja2 = "3.0.3"
mkdocs-material = "^8.1.7"
bump2version = "^1.0.1"
pyserum = "^0.5.0-alpha.0"
mkdocstrings = "^0.17.0"
bandit = "1.7.2"
pytest = "7.1.2"
pytest-xprocess = "^0.18.1"
pytest-asyncio = "^0.19.0"
black = {version = "^22.3.0", optional = true }
[tool.poetry.plugins.pytest11]
pytest_anchorpy = "anchorpy.pytest_plugin"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"