-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.45 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "graphbook"
version = "0.10.1"
authors = ["Richard Franklin <[email protected]>"]
description = "The AI-drive data pipeline and workflow framework for data scientists and machine learning engineers."
keywords = ["ml", "workflow", "framework", "pytorch", "data science", "machine learning", "ai"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = "MIT"
homepage = "https://graphbook.ai"
documentation = "https://docs.graphbook.ai"
repository = "https://github.com/graphbookai/graphbook"
[tool.poetry.scripts]
graphbook = "graphbook.main:main"
[tool.poetry.dependencies]
python = "^3.9"
torch = "^2.0.0"
aiohttp = "^3.9.4"
pillow = "^10.3.0"
watchdog = "^4.0.0"
psutil = "^6.0.0"
pyyaml = "^6.0.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
sphinxcontrib-applehelp = "^1.0.8"
sphinxcontrib-devhelp = "^1.0.6"
sphinxcontrib-htmlhelp = "^2.0.5"
sphinxcontrib-jquery = "^4.1"
sphinxcontrib-jsmath = "^1.0.1"
sphinxcontrib-qthelp = "^1.0.7"
sphinxcontrib-serializinghtml = "^1.1.10"
pytest-asyncio = "^0.23.8"
sphinx-sitemap = "^2.6.0"
sphinxawesome-theme = "^5.2.0"
sphinx-design = "^0.6.1"
[tool.poetry.group.peer]
optional = true
[tool.poetry.group.peer.dependencies]
torchvision = "^0.18.1"