-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.54 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "smah"
version = "0.1.13"
description = "OpenAI Driven system and user preference aware commandline GPT with pipe processing support and conversation history."
authors = ["Keith Brings <keith.brings@noizu.com>"]
readme = "README.md"
package-mode = true
homepage = "https://github.com/noizu-labs-ml/smah"
documentation = "https://smah.readthedocs.io/en/latest/"
repository = "https://github.com/noizu-labs-ml/smah"
license = "MIT"
keywords = ["openai", "command-line", "system", "automation", "smart-pipe"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
]
[tool.poetry.dependencies]
python = "^3.10"
rich = "^13.9.3"
openai = "^1.52.0"
aiohttp = "^3.10.10"
requests = "^2.32.3"
pyyaml = "^6.0.2"
readchar = "^4.2.0"
prompt-toolkit = "^3.0.48"
psutil = "^6.1.0"
lxml = "^5.3.0"
cssselect = "^1.2.0"
[tool.poetry.scripts]
smah = "smah.smah:main"
smah-db = "smah.smah_migrate:main"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
[tool.poetry.group.docs.dependencies]
pytest = "^8.3.3"
sphinx = "^8.1.3"
recommonmark = "^0.7.1"
sphinxcontrib-mermaid = "^1.0.0"
myst-parser = "^4.0.0"
linkify = "^1.4"
linkify-it-py = "^2.0.3"
sphinx-rtd-theme = "^3.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"