-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 935 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tuna-cli"
version = "0.2.0"
authors = [
{ name = "Abhigyan Arya (Opennote Labs)", email = "[email protected]" },
]
description = "Fine tuning, reimagined. Welcome to tuna - we're simplifying cloud compute architecture, datasets, and more, to get your specialized AI from 0 to 1 ASAP."
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"inquirer",
"requests",
"halo",
"jupyterlab",
"nbformat",
"scikit-learn",
"tabulate",
"paramiko",
"watchdog",
"gputil"
]
[project.scripts]
tuna = "tuna.cli.main:main"
[project.urls]
Homepage = "https://github.com/abhi-arya1/tuna"
Issues = "https://github.com/abhi-arya1/tuna/issues"