-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
35 lines (32 loc) · 967 Bytes
/
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
from setuptools import setup
import setuptools
import deepllm
with open('deepllm/requirements.txt') as f:
required = f.read().splitlines()
with open("README.md", "r") as f:
long_description = f.read()
version = deepllm.__version__
setup(name='deepllm',
version=version,
description='Deep, recursive, goal-driven LLM explorer',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ptarau/recursors.git',
author='Paul Tarau',
author_email='[email protected]',
license='GPL-3',
packages=setuptools.find_packages(),
#packages=['deepllm'],
package_data={
'deepllm': [
'requirements.txt',
'tests/*.*',
'apps/*.*',
'demos/*.*',
'local_llms/*.*'
]
},
include_package_data=True,
install_requires=required,
zip_safe=False
)