forked from michaelhly/solana-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (55 loc) · 1.47 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
[tool.poetry]
name = "solana"
version = "0.23.0"
description = "Solana Python API"
authors = ["Michael Huang <[email protected]>", "Kevin Heavey <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/michaelhly/solanapy"
documentation = "https://michaelhly.github.io/solana-py/"
keywords = ["solana", "blockchain", "web3"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
packages = [
{ include = "solana", from = "src" },
{ include = "spl", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.7"
construct-typing = "^0.5.2"
httpx = "^0.18.2"
PyNaCl = "^1.4.0"
requests = "^2.24"
typing-extensions = "^3.10.0"
cachetools = "^4.2.2"
types-cachetools = "^4.2.4"
jsonrpcclient = "^4.0.1"
websockets = "^10.1"
jsonrpcserver = "^5.0.7"
apischema = "^0.16.1"
based58 = "^0.1.0"
[tool.poetry.dev-dependencies]
black = "^21.9b0"
pytest = "^6.2.5"
pylint = "^2.11.1"
mypy = "^0.910"
pydocstyle = "^6.1.1"
flake8 = "^4.0.1"
isort = "^5.9.3"
pytest-docker = "^0.10.3"
bump2version = "^1.0.1"
types-requests = "^2.25.11"
pytest-asyncio = "^0.16.0"
pytest-cov = "^3.0.0"
asyncstdlib = "^3.10.2"
mkdocstrings = "^0.18.0"
mkdocs-material = "^8.2.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"