-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (62 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
66 lines (62 loc) · 1.64 KB
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
[project]
name = "dreamlake"
version = "0.4.2"
description = "ML experiment tracking and data storage"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Ge Yang"},
{name = "Tom Tao"}
]
keywords = ["machine-learning", "experiment-tracking", "mlops", "data-storage"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"httpx>=0.27.0",
"pyjwt>=2.8.0",
"params-proto>=1.9.0",
"msgpack>=1.0.0",
]
[project.optional-dependencies]
auth = [
"keyring>=25.0.0",
"cryptography>=42.0.0",
"rich>=13.0.0",
"qrcode>=7.0.0",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"numpy>=1.24.0",
"sphinx>=7.2.0",
"furo>=2024.0.0",
"sphinx-autodoc-typehints>=2.0.0",
"sphinx-autobuild>=2024.0.0",
"sphinx-copybutton>=0.5.0",
"sphinx-design>=0.5.0",
"sphinx-tabs>=3.4.0",
"sphinxcontrib-mermaid>=0.9.0",
"sphinxext-opengraph>=0.9.0",
"myst-parser>=2.0.0",
"linkify-it-py>=2.0.0",
"ruff>=0.3.0",
"mypy>=1.9.0",
]
[project.scripts]
dreamlake = "dreamlake.cli:main"
[tool.uv]
[build-system]
requires = ["uv_build>=0.9.2,<0.10.0"]
build-backend = "uv_build"