forked from xdssio/xetrack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (59 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
68 lines (59 loc) · 1.76 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
67
68
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "xetrack"
version = "0.3.3"
description = "A simple tool for benchamrking and tracking machine learning models and experiments."
readme = "README.md"
packages = [{ include = "xetrack" }]
authors = ["xdssio <jonathan@xdss.io>"]
keywords = [
"machine-learning",
"duckdb",
"pandas",
"sqlitedict",
"xxhash",
"loguru"
]
license = "BSD-3-Clause"
[tool.poetry.dependencies]
python = "^3.9"
duckdb = ">=0.10.0"
pandas = ">=2.0.3"
psutil = ">=5.9.5"
coolname = ">=2.2.0"
typer = ">=0.9.0"
sqlitedict = ">=2.1.0"
xxhash = ">=3.4.1"
loguru = ">=0.7.0"
tabulate = ">=0.9.0"
cloudpickle = ">=2.0.0"
[tool.poetry.extras]
dev = ["pytest", "scikit-learn"]
bashplotlib = ["bashplotlib"]
[project]
name = "xetrack"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Filesystems",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[project.urls]
Homepage = "https://github.com/xdssio/xetrack"
[tool.poetry.scripts]
xt = "xetrack.cli:app"