forked from getainode/ainode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (72 loc) · 1.95 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (72 loc) · 1.95 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
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ainode"
version = "0.4.44"
description = "Turn any NVIDIA GPU into a local AI platform. Inference + fine-tuning in your browser."
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
authors = [
{name = "Argentos AI", email = "hello@argentos.ai"},
]
keywords = ["nvidia", "gpu", "llm", "inference", "fine-tuning", "vllm", "local-ai"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"pynvml>=11.5.0",
"psutil>=5.9.0",
"aiohttp>=3.9.0",
"rich>=13.0.0",
"huggingface_hub>=0.20.0",
]
[project.optional-dependencies]
engine = [
"vllm>=0.6.0",
]
training = [
"torch>=2.0",
"transformers>=4.35",
"datasets>=2.14",
"peft>=0.6",
]
embeddings = [
"sentence-transformers>=2.7.0",
]
distributed = [
"ray[default]>=2.9",
]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.23.0",
"pytest-aiohttp>=1.0.0",
"ruff>=0.1.0",
]
[project.scripts]
ainode = "ainode.cli.main:main"
[project.urls]
Homepage = "https://ainode.dev"
Documentation = "https://ainode.dev/docs"
Repository = "https://github.com/getainode/ainode"
"Bug Tracker" = "https://github.com/getainode/ainode/issues"
"Powered By" = "https://argentos.ai"
[tool.setuptools.packages.find]
where = ["."]
include = ["ainode", "ainode.*"]
exclude = ["tests*", "ops*", "scripts*"]
[tool.setuptools.package-data]
"ainode.web" = ["**/*"]
[tool.ruff]
target-version = "py310"
line-length = 100