-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
38 lines (35 loc) · 980 Bytes
/
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
[tool.poetry]
name = "LaphaeL-aicmd"
version = "1.2.3"
description = "Python program enable chat AI to execute commands on linux"
authors = [
"LaphaeL12304 <[email protected]>",
"DataEraserC <[email protected]>",
]
license = "AGPL-3.0"
readme = "README.md"
homepage = "https://github.com/LaphaeL12304/LaphaeLaicmd-linux"
repository = "https://github.com/LaphaeL12304/LaphaeLaicmd-linux"
keywords = ["aicmd", "ai"]
packages = [
{ include = "*", from = "src", to = "laphael_aicmd", format = [
"sdist",
"wheel",
] },
]
include = []
[tool.poetry.dependencies]
python = "^3.10"
google-generativeai = "^0.5.3"
openai = "^1.30.1"
ptyprocess = "^0.7.0"
toml = "^0.10.2"
setuptools = "*"
polib = "^1.2.0"
[tool.poetry.scripts]
aicmd = 'laphael_aicmd:cli'
laphael_aicmd = 'laphael_aicmd:cli'
laphael-aicmd = 'laphael_aicmd:cli'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"