-
Notifications
You must be signed in to change notification settings - Fork 333
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.14 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1.14 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
# -- encoding: utf-8 --
# Copyright (c) 2024 Huawei Technologies Co., Ltd. All Rights Reserved.
# This file is a part of the ModelEngine Project.
# Licensed under the MIT License. See License.txt in the project root for license information.
# ======================================================================================================================
"""
功 能:用于打包工程为 wheel 文件的脚本。
"""
# 打包方式:在 fel/python 目录下执行 python setup.py sdist bdist_wheel
import setuptools
_FEL_FRAMEWORK_VERSION = "0.0.1.dev"
setuptools.setup(
name="fel",
version=_FEL_FRAMEWORK_VERSION,
author="fit",
url="https://github.com/ModelEngine-Group/fit-framework",
packages=setuptools.find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests", "_test.*", "_test"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=["langchain==0.2.6",
"llama_index==0.10.47",
"requests==2.32.4"],
python_requires='==3.9.11'
)