-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (45 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
55 lines (45 loc) · 1.15 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hatchling"
version = "0.4.2"
description = "LLM with MCP Tool Calling"
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE"}
authors = [
{name = "Hatch! Team"}
]
classifiers = [
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.31.0",
"aiohttp>=3.9.1",
"asyncio>=3.4.3",
"uvicorn>=0.24.0",
"fastapi>=0.104.1",
"websockets>=12.0",
"httpx>=0.25.2",
"anyio>=3.7.1",
"prompt_toolkit>=3.0.41",
"tomli-w==1.2.0",
"tomli==2.2.1",
"PyYAML>=6.0",
"tqdm>=4.0.0",
"mcp>=1.6.0",
"ollama==0.5.1",
"openai==1.97.0",
"hatch @ git+https://github.com/CrackingShells/Hatch.git@v0.6.2"
]
[project.scripts]
hatchling = "hatchling.app:main"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
hatchling = ["config/languages/*.toml"]
[project.urls]
"Repository" = "https://github.com/CrackingShells/Hatchling"