-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpyproject.toml
43 lines (42 loc) · 1.18 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
[project]
name = "fleet-context"
version = "1.1.8"
description = "A chat interface over up-to-date Python library documentation."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.txt"}
keywords = ["libraries", "embeddings", "ai"]
authors = [
{name = "Fleet AI", email = "team@fleet.so" }
]
maintainers = [
{name = "Nic Ouporov", email = "nic@fleet.so" },
{name = "Alec Jo", email = "alec@fleet.so" },
{name = "Andrew Zhou", email = "andrew@fleet.so" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"openai>1.1.0",
"pandas",
"pyarrow",
"requests",
"rich>=13.0.0",
"tiktoken>=0.3.3",
"tqdm",
]
[project.urls]
"Homepage" = "https://fleet.so"
"Source" = "https://github.com/fleet-ai/context"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"