Skip to content

Commit 188901c

Browse files
committed
create a basic pyproject.toml for packaging
1 parent cce49fe commit 188901c

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

pyproject.toml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "functionary"
7+
version = "0.0.1"
8+
authors = [
9+
{ name="Khai Mai", email="[email protected]" },
10+
{ name="Jeffrey Fong", email="[email protected]" },
11+
{ name="Musab Gultekin", email="[email protected]" },
12+
]
13+
description = "A chat language model that can interpret and execute functions/plugins"
14+
readme = "README.md"
15+
requires-python = ">=3.9"
16+
classifiers = [
17+
"Programming Language :: Python :: 3",
18+
"License :: OSI Approved :: MIT License",
19+
"Operating System :: OS Independent",
20+
]
21+
22+
[options]
23+
install_requires = [
24+
"transformers==4.36.2",
25+
"accelerate~=0.21.0",
26+
"sentencepiece~=0.1.99",
27+
"fastapi~=0.104.0",
28+
"uvicorn~=0.23.1",
29+
"pydantic~=1.10.13",
30+
"scipy~=1.11.1",
31+
"jsonref~=1.1.0",
32+
"requests~=2.31.0",
33+
"PyYAML~=6.0.1",
34+
"typer==0.9.0",
35+
"protobuf==3.20.0",
36+
"tokenizers==0.15.0",
37+
"vllm==0.2.6"
38+
]
39+
40+
[project.urls]
41+
"Homepage" = "https://github.com/MeetKai/functionary"
42+
"Bug Tracker" = "https://github.com/MeetKai/functionary/issues"

0 commit comments

Comments
 (0)