-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (38 loc) · 1023 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
39
40
41
42
43
44
45
[project]
name = "ask-terminal"
version = "0.1.4"
authors = [
{ name = "Dongning Chen", email = "[email protected]" },
]
description = "Chat with your terminal, getting things done using natural langauge."
readme = "README.md"
requires-python = ">=3.10.12"
dependencies = [
"pyyaml>=5.1",
"fastapi>=0.115.2",
"uvicorn>=0.31.1",
"pydantic>=2.5.3",
"mext-lang>=0.1.1",
"aiohttp>=3.9.1",
"transformers>=4.36.2",
"openai>=1.7.1",
"anthropic>=0.36.2",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.license]
file = "LICENSE"
[project.urls]
Homepage = "https://github.com/donny-hikari/ask-terminal"
Repository = "https://github.com/donny-hikari/ask-terminal"
[project.scripts]
ask-terminal-server = "ask_terminal.server:main"
[tool.setuptools]
packages = ["ask_terminal"]
[tool.setuptools.package-data]
ask_terminal = ["utils/*", "libs/*"]
[build-system]
requires = ["setuptools>=51", "wheel"]
build-backend = "setuptools.build_meta"