-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.19 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "comai"
dynamic = ["version"]
authors = [{ name = "Pedro Rico", email = "[email protected]" }]
description = "AI powered console assistant"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Operating System :: MacOS",
"Operating System :: Unix",
]
dependencies = [
"typer-slim==0.12.3",
"rich==13.7.1",
"prompt-toolkit==3.0.43",
"simple-term-menu==1.6.4",
"langchain==0.1.17",
"langchain-openai==0.1.6",
"ollama==0.1.9",
]
[project.urls]
homepage = "https://github.com/ricopinazo/comai"
repository = "https://github.com/ricopinazo/comai"
issues = "https://github.com/ricopinazo/comai/issues"
[project.scripts]
comai = "comai.cli:app"
[project.optional-dependencies]
dev = [
"pytest",
"hatchling",
"types-requests==2.31.0.20240406",
"mypy==1.9.0",
"black==24.4.0",
]
[tool.hatch.version]
path = "src/comai/__init__.py"
[tool.mypy]
ignore_missing_imports = true