-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathsetup.py
63 lines (61 loc) · 1.66 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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md")) as infile:
long_description = infile.read()
setup(
name="airoboros",
version="2.2.2",
description="Updated and improved implementation of the self-instruct system.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jondurbin/airoboros",
author="Jon Durbin",
license="Apache 2.0",
packages=[
"airoboros",
"airoboros.lmoe",
"airoboros.instructors",
"airoboros.instructors.prompts"
],
package_data={"airoboros": ["**/*.txt"]},
include_package_data=True,
install_requires=[
"aiohttp[speedups]>=3.8",
"backoff>=2.2",
"requests>=2.28",
"loguru>=0.7",
"faiss-cpu==1.7.4",
"sentence-transformers>=2.2.2",
"fastapi>=0.101.0",
"uvicorn>=0.23.0",
"optimum==1.12.0",
"google-auth==2.25.1",
],
extras_require={
"dev": [
"black",
"flake8",
],
"vllm": [
"fschat",
"vllm",
],
"gpu": [
"flash_attn>=2.4.2",
"bitsandbytes>=0.40",
"peft",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
],
entry_points={
"console_scripts": [
"airoboros = airoboros.entrypoint:run"
]
},
)