-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.07 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.07 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
"""Backward-compatible setup.py — delegates to pyproject.toml via setuptools."""
from setuptools import setup, find_packages
setup(
name="brainbrew",
version="1.2.0",
packages=find_packages(exclude=["tests", "tests.*", "docs"]),
python_requires=">=3.12",
install_requires=[
"streamlit==1.54.0",
"pydantic==2.10.6",
"python-dotenv==1.0.1",
"structlog==25.1.0",
"pdfminer.six==20240706",
"langchain-text-splitters==0.3.9",
"tiktoken==0.8.0",
"openai>=1.50.0,<2.0",
"distilabel[openai,vllm]==1.5.2",
"datasets==3.2.0",
"huggingface_hub==0.28.1",
"pandas==2.2.3",
"numpy==2.2.1",
"vllm==0.19.0",
"unsloth==2024.12.7",
"trl==0.12.2",
"transformers==5.0.0rc3",
"accelerate==1.2.1",
"bitsandbytes==0.45.0",
"sentencepiece==0.2.1",
"tenacity==9.0.0",
"tqdm==4.67.1",
"rich>=10.14.0,<14",
],
entry_points={
"console_scripts": [
"brainbrew=app:main",
],
},
)