-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
68 lines (65 loc) · 1.59 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from setuptools import setup, find_packages
VERSION = "0.1.1"
DESCRIPTION = "Claude Search and Retrieval Demo"
LONG_DESCRIPTION = "Lightweight wrapper around the Anthropic Python SDK to experiment with Claude's Search and Retrieval capabilities."
# Setting up
setup(
name="claude_retriever",
version=VERSION,
author="Anthropic",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[
"aiohttp",
"aiosignal",
"anthropic",
"anyio",
"beautifulsoup4",
"certifi",
"click",
"elasticsearch",
"filelock",
"huggingface-hub",
"idna",
"joblib",
"loguru",
"mpmath",
"multidict",
"nest-asyncio",
"nltk",
"numpy",
"packaging",
"pinecone-client",
"psutil",
"pydantic",
"python-dateutil",
"python-dotenv",
"pyyaml",
"requests",
"scikit-learn",
"scipy",
"sentence-transformers",
"sentencepiece",
"six",
"soupsieve",
"sympy",
"tenacity",
"torch",
"tornado",
"transformers",
"urllib3",
"wikipedia"
],
keywords=["python", "anthropic"],
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Private :: Do Not Upload"
]
)