forked from kevinheavey/anchorpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 1.23 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
[tool.poetry]
name = "anchorpy"
version = "0.6.0"
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.19.0"
sumtypes = "^0.1a6"
apischema = "^0.16.6"
inflection = "^0.5.1"
borsh-construct = "^0.1.0"
websockets = "^10.0"
toolz = "^0.11.2"
jsonrpcclient = "^4.0.1"
zstandard = "^0.16.0"
pytest-xprocess = "^0.18.1"
more-itertools = "^8.11.0"
typer = { version = "^0.4.0", optional = true }
ipython = { version = "^7.30.1", optional = true }
[tool.poetry.extras]
cli = ["typer", "ipython"]
[tool.poetry.scripts]
anchorpy = "anchorpy.cli:app"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
wemake-python-styleguide = "^0.15.3"
mypy = "^0.910"
black = "^21.7b0"
pydocstyle = "^6.1.1"
isort = "^5.9.3"
pytest-asyncio = "^0.15.1"
mkdocs-material = "^7.3.3"
bump2version = "^1.0.1"
pyserum = "^0.5.0-alpha.0"
mkdocstrings = "^0.16.2"
[tool.poetry.plugins.pytest11]
pytest_anchorpy = "anchorpy.pytest_plugin"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"