-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
46 lines (45 loc) · 1.51 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="fleet-context",
version="1.1.8",
description="A chat interface over up-to-date Python library documentation.",
long_description=open("README.md", "r", encoding="utf8").read(),
long_description_content_type="text/markdown",
author="Fleet AI",
author_email="[email protected]",
url="https://github.com/fleet-ai/context/tree/main",
packages=find_packages(),
install_requires=[
"openai>=1.1.0",
"rich>=13.0.0",
"tiktoken>=0.3.3",
"tqdm>=4.62.3",
"fastparquet>=2023.10.0",
],
py_modules=["cli", "context", "ui"],
entry_points={
"console_scripts": [
"context = cli:main",
"context-ui = ui:main",
"fleet-context = cli:main",
"fleet-context-ui = ui:main",
],
},
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",
],
keywords="libraries, embeddings, ai",
python_requires=">=3.9",
project_urls={ # Optional
"Homepage": "https://fleet.so",
"Source": "https://github.com/fleet-ai/context",
},
)