-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 797 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (26 loc) · 797 Bytes
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "huh-cli"
version = "0.1.1"
description = "On-device AI assistant for your terminal"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [
"click>=8.0",
"rich>=13.0",
"huggingface_hub>=0.23.0",
"mlx-lm>=0.18.0; platform_machine == 'arm64' and sys_platform == 'darwin'",
"llama-cpp-python>=0.2.0; platform_machine != 'arm64' or sys_platform != 'darwin'",
]
[project.urls]
Homepage = "https://github.com/evanpaul14/huh-cli"
Repository = "https://github.com/evanpaul14/huh-cli"
Issues = "https://github.com/evanpaul14/huh-cli/issues"
[project.scripts]
huh = "huh.main:cli"
[tool.setuptools.packages.find]
where = ["."]