forked from Python-Cardano/pycardano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
84 lines (77 loc) · 2.08 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
[tool.poetry]
name = "pycardano"
version = "0.7.2"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
description = "A Cardano library in Python"
homepage = "https://github.com/cffls/pycardano"
documentation = "https://pycardano.readthedocs.io/en/latest/"
keywords = ["python", "cardano", "blockchain", "crypto"]
authors = ["Jerry <jerrycgh@gmail.com>"]
readme = "README.md"
repository = "https://github.com/cffls/pycardano"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
PyNaCl = "^1.5.0"
cbor2 = "^5.4.3"
typeguard = "^2.13.3"
blockfrost-python = "0.5.2"
websocket-client = "^1.4.1"
cose = "0.9.dev8"
pprintpp = "^0.4.0"
mnemonic = "^0.20"
ECPy = "^1.2.5"
[tool.poetry.dev-dependencies]
Sphinx = "^4.3.2"
sphinx-rtd-theme = "^1.1.1"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
flake8 = "^5.0.4"
isort = "^5.10.1"
black = "^22.3.0"
sphinx-copybutton = "^0.5.0"
retry = "^0.9.2"
Flask = "^2.0.3"
pytest-xdist = "^3.0.2"
mypy = "^0.990"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore=examples --ignore=integration-test --ignore=test/resources/haskell"
minversion = "6.0"
markers = [
"post_alonzo",
"single"
]
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
disable_error_code = ["str-bytes-safe"]
python_version = 3.7
exclude = [
'^pycardano/cip/cip8.py$',
'^pycardano/crypto/bech32.py$',
'^pycardano/certificate.py$',
'^pycardano/coinselection.py$',
'^pycardano/exception.py$',
'^pycardano/hash.py$',
'^pycardano/key.py$',
'^pycardano/logging.py$',
'^pycardano/metadata.py$',
'^pycardano/plutus.py$',
'^pycardano/transaction.py$',
'^pycardano/txbuilder.py$',
'^pycardano/utils.py$',
'^pycardano/witness.py$',
]