-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
38 lines (34 loc) · 1.15 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
[tool.poetry]
name = "godel"
version = "0.8.0"
description = "Golden's Python SDK for its Protocol: Decentralized Canonical Knowledge Graph"
authors = ["aychang95"]
[tool.poetry.dependencies]
python = "^3.7.10, <3.11"
wheel = "^0.36.2"
setuptools = "^65.6.3"
tqdm = "^4.63.1"
sgqlc = "^16.0"
requests = "^2.27.1"
# pandas 1.4+ and numpy 1.22+ cut off support py3.7
numpy = {version="1.21.6", optional = true}
pandas = {version="1.3.5", optional = true}
web3 = {version="^5.28.0", optional = true}
jupyterlab = {version="^3.0.0", optional = true}
ipywidgets = {version="^7.6.3", optional = true}
mkdocs = {version="^1.3.0", optional = true}
mkdocs-material = {version="^8.2.9", optional = true}
mkdocstrings = {version="^0.19.0", optional = true, extras=["python"]}
mkdocs-jupyter = {version="^0.20.1", optional = true}
Faker = "^15.3.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "^3.8.4"
black = "^22.6.0"
[tool.poetry.extras]
docs = ["mkdocs-material", "mkdocstrings", "mkdocs-jupyter"]
web3 = ["web3"]
data-tools = ["jupyterlab", "ipywidgets", "pandas", "numpy"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"