forked from bigchaindb/cryptoconditions
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.51 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
[tool.poetry]
name = "planetmint-cryptoconditions"
version = "1.2.2"
description = "Multi-algorithm, multi-level, multi-signature format for expressing conditions and fulfillments according to the Interledger Protocol (ILP)."
authors = ["Cryptoconditions contributors <contact@ipdb.global>"]
readme = "README.rst"
keywords = ["cryptoconditions", "interledger", "merkle tree", "ed25519", "threshold signatures", "hash lock"]
repository = "https://github.com/planetmint/cryptoconditions/"
license = "MIT"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Software Development",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
]
exclude = ["tests*", "examples"]
[tool.poetry.dependencies]
python = "^3.9"
base58 = "2.1.1"
PyNaCl = "1.4.0"
pyasn1 = "0.4.8"
cryptography = "^41.0.1"
setuptools = "^67.2.0"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.9"
ipython = "^8.5.0"
coverage = "^6.4.4"
hypothesis = "^6.54.5"
pep8 = "^1.7.1"
pyflakes = "^2.5.0"
pylint = "^2.15.2"
pytest = "^7.2.0"
pytest-cov = "^3.0.0"
pytest-xdist = "^3.3.1"
recommonmark = ">=0.4.0"
Sphinx = ">=1.3.5"
sphinxcontrib-napoleon = ">=0.4.4"
sphinx-press-theme = "0.8.0"
black = "23.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"