-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (43 loc) · 1.02 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
# -*- coding: utf-8 -*-
""" Setup for installation."""
from __future__ import absolute_import, division, print_function
import setuptools
# released requires
requires = [
"aiohttp",
"bm25s",
"dashscope",
"easydict",
"faiss_cpu",
"immutabledict",
"loguru",
"numpy",
"openai",
"pandas",
"pydantic",
"pytz",
"pyyaml",
"requests",
"scikit_learn",
"scipy",
"torch",
"tqdm",
]
setuptools.setup(
name="prompt_scope",
version="v1.0.0",
author="",
author_email="",
description="A framework for demonstration augmentation and prompt optimization",
packages=setuptools.find_packages(),
install_requires=requires,
license="Apache License 2.0",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
)