-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
45 lines (39 loc) · 1.25 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
#!/usr/bin/env python
# This is a python script to build and push the python package to https://pypi.org.
from setuptools import find_packages, setup
import openaoe.backend.util.file as utils
import os
def recursive_files(base_dir):
file_list = []
for dirpath, dirnames, filenames in os.walk(base_dir):
for filename in filenames:
file_list.append(os.path.join(dirpath, filename))
return file_list
setup(
name='openaoe',
version='0.0.6',
description='LLM Group Chat Framework: chat with multiple LLMs at the same time',
long_description=utils.get_file_content("README.md"),
long_description_content_type='text/markdown',
author='arkmon',
author_email='',
keywords=['openaoe','open-aoe'],
url='https://github.com/internlm/openaoe',
packages=find_packages(),
include_package_data=True,
package_data={
'openaoe': ['frontend/dist/*', 'frontend/dist/**/*']
},
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
],
license='Apache License 2.0',
install_requires=utils.parse_requirements('openaoe/backend/requirements.txt'),
entry_points={
'console_scripts': [
'openaoe=openaoe.main:main'
]
},
ext_modules=[],
)