forked from wgryc/phasellm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (57 loc) · 1.58 KB
/
setup.py
File metadata and controls
59 lines (57 loc) · 1.58 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
56
57
58
59
from setuptools import setup, find_packages
from project_metadata import NAME, VERSION, AUTHOR, DESCRIPTION, LONG_DESCRIPTION
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email="hello@phaseai.com",
license="MIT",
packages=find_packages(),
install_requires=[
"Flask>=2.0.0",
"requests>=2.24.0",
"httpx>=0.25.0",
"openai>=1.1.0",
"cohere>=4.0.0",
"python-dotenv",
"pandas>=2.0.0",
"openpyxl>=3.1.0",
"typing-extensions>=4.6.3",
"urllib3==2.0.7",
"sseclient-py>=1.7.2",
"docker>=6.1.3",
"beautifulsoup4>=4.12.2",
"lxml>=4.9.2",
"fake-useragent>=1.2.1",
"playwright>=1.35.0",
"feedparser>=6.0.10",
"azure-identity>=1.14.0",
"replicate==0.20.0",
"google-cloud-aiplatform>=1.42.1",
"anthropic>=0.30.1",
],
extras_require={
"complete": [
"transformers>=4.25.0",
"accelerate>=0.16.0",
"torch>=1.0.0",
],
"docs": [
"furo",
"sphinx>=7.1.2",
"myst_parser>=2.0.0",
"sphinx-autoapi>=2.1.1",
"sphinx-autobuild>=2021.3.14",
],
},
python_requires=">=3.8.0",
keywords="llm, nlp, evaluation, ai",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
)