-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (47 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
56 lines (47 loc) · 1.34 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
[tool.poetry]
name = "hyperspell-cli"
version = "0.1.0"
description = "The Hyperspell CLI for developers and AI agents."
readme = "README.md"
license = "MIT"
authors = ["Hyperspell <hello@hyperspell.com>"]
keywords = ["hyperspell", "cli", "search", "memory", "ai", "agents"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"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",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
packages = [
{ include = "hyperspell_cli" }
]
[tool.poetry.urls]
Repository = "https://github.com/hyperspell/cli"
[tool.poetry.dependencies]
python = "^3.9"
typer = ">=0.15"
rich = "^13"
questionary = "^2.1"
hyperspell = ">=0.34"
httpx = ">=0.23"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
ruff = ">=0.11"
[tool.poetry.scripts]
hyperspell = "hyperspell_cli.main:app"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"