setup.py 3.96 KB
Newer Older
chenych's avatar
chenych committed
1
# Copyright 2025 the LlamaFactory team.
chenych's avatar
chenych committed
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
15
16
import os
import re
luopl's avatar
luopl committed
17
from typing import List
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
18
19
20
21

from setuptools import find_packages, setup


luopl's avatar
luopl committed
22
def get_version() -> str:
luopl's avatar
luopl committed
23
    with open(os.path.join("src", "llamafactory", "extras", "env.py"), encoding="utf-8") as f:
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
24
        file_content = f.read()
chenych's avatar
chenych committed
25
        pattern = r"{}\W*=\W*\"([^\"]+)\"".format("VERSION")
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
26
27
28
29
        (version,) = re.findall(pattern, file_content)
        return version


luopl's avatar
luopl committed
30
def get_requires() -> List[str]:
luopl's avatar
luopl committed
31
    with open("requirements.txt", encoding="utf-8") as f:
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
32
33
34
35
36
        file_content = f.read()
        lines = [line.strip() for line in file_content.strip().split("\n") if not line.startswith("#")]
        return lines


luopl's avatar
luopl committed
37
38
def get_console_scripts() -> List[str]:
    console_scripts = ["llamafactory-cli = llamafactory.cli:main"]
chenych's avatar
chenych committed
39
    if os.getenv("ENABLE_SHORT_CONSOLE", "1").lower() in ["true", "y", "1"]:
luopl's avatar
luopl committed
40
41
42
43
44
        console_scripts.append("lmf = llamafactory.cli:main")

    return console_scripts


Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
45
extra_require = {
chenych's avatar
chenych committed
46
    "torch": ["torch>=1.13.1"],
chenych's avatar
chenych committed
47
    "torch-npu": ["torch==2.4.0", "torch-npu==2.4.0.post2", "decorator"],
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
48
    "metrics": ["nltk", "jieba", "rouge-chinese"],
chenych's avatar
chenych committed
49
    "deepspeed": ["deepspeed>=0.10.0,<=0.16.4"],
luopl's avatar
luopl committed
50
    "liger-kernel": ["liger-kernel"],
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
51
    "bitsandbytes": ["bitsandbytes>=0.39.0"],
chenych's avatar
chenych committed
52
53
54
    "hqq": ["hqq"],
    "eetq": ["eetq"],
    "gptq": ["optimum>=1.17.0", "auto-gptq>=0.5.0"],
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
55
56
    "awq": ["autoawq"],
    "aqlm": ["aqlm[gpu]>=1.1.0"],
chenych's avatar
chenych committed
57
    "vllm": ["vllm>=0.4.3,<=0.7.3"],
chenych's avatar
chenych committed
58
    "galore": ["galore-torch"],
luopl's avatar
luopl committed
59
    "apollo": ["apollo-torch"],
chenych's avatar
chenych committed
60
61
62
    "badam": ["badam>=1.2.1"],
    "adam-mini": ["adam-mini"],
    "qwen": ["transformers_stream_generator"],
luopl's avatar
luopl committed
63
64
65
66
67
68
69
70
71
72
    "minicpm_v": [
        "soundfile",
        "torchvision",
        "torchaudio",
        "vector_quantize_pytorch",
        "vocos",
        "msgpack",
        "referencing",
        "jsonschema_specifications",
    ],
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
73
    "modelscope": ["modelscope"],
luopl's avatar
luopl committed
74
    "openmind": ["openmind"],
luopl's avatar
luopl committed
75
    "swanlab": ["swanlab"],
luopl's avatar
luopl committed
76
    "dev": ["pre-commit", "ruff", "pytest"],
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
77
78
79
80
81
}


def main():
    setup(
chenych's avatar
chenych committed
82
        name="llamafactory",
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
83
84
        version=get_version(),
        author="hiyouga",
luopl's avatar
luopl committed
85
        author_email="hiyouga AT buaa.edu.cn",
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
86
        description="Easy-to-use LLM fine-tuning framework",
luopl's avatar
luopl committed
87
        long_description=open("README.md", encoding="utf-8").read(),
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
88
89
90
91
92
93
        long_description_content_type="text/markdown",
        keywords=["LLaMA", "BLOOM", "Falcon", "LLM", "ChatGPT", "transformer", "pytorch", "deep learning"],
        license="Apache 2.0 License",
        url="https://github.com/hiyouga/LLaMA-Factory",
        package_dir={"": "src"},
        packages=find_packages("src"),
chenych's avatar
chenych committed
94
        python_requires=">=3.9.0",
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
95
96
        install_requires=get_requires(),
        extras_require=extra_require,
luopl's avatar
luopl committed
97
        entry_points={"console_scripts": get_console_scripts()},
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
98
99
100
101
102
103
104
105
106
107
108
        classifiers=[
            "Development Status :: 4 - Beta",
            "Intended Audience :: Developers",
            "Intended Audience :: Education",
            "Intended Audience :: Science/Research",
            "License :: OSI Approved :: Apache Software License",
            "Operating System :: OS Independent",
            "Programming Language :: Python :: 3",
            "Programming Language :: Python :: 3.9",
            "Programming Language :: Python :: 3.10",
            "Programming Language :: Python :: 3.11",
chenych's avatar
chenych committed
109
            "Programming Language :: Python :: 3.12",
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
110
111
112
113
114
115
116
            "Topic :: Scientific/Engineering :: Artificial Intelligence",
        ],
    )


if __name__ == "__main__":
    main()