-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (39 loc) · 930 Bytes
/
pyproject.toml
File metadata and controls
51 lines (39 loc) · 930 Bytes
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
[tool.poetry]
name = "dkg"
version = "8.1.1rc2"
description = "Python library for interacting with the OriginTrail Decentralized Knowledge Graph"
authors = ["Uladzislau Hubar <hubar.uladzislau@gmail.com>, Zvonimir Sculac <zvonimir.sculac@origin-trail.com>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pyyaml = "^6.0.2"
web3 = "^7.3.0"
pandas = "^2.2.3"
rdflib = "^6.3.2"
eth-abi = "^5.1.0"
ot-pyld = "^2.1.1"
hexbytes = "^1.2.1"
eth-account = "^0.13.4"
eth-typing = "^5.0.0"
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.4"
pre-commit = "^4.0.1"
pytest = "^8.0"
pytest-cov = "^4.0"
[tools.setuptools]
packages = ["dkg"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra"
testpaths = [
"test"
]
python_files = [
"test_*.py",
"*_test.py"
]