-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (42 loc) · 1.27 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
from setuptools import setup, find_packages
setup(
name='luminos',
version='0.14.7',
packages=find_packages(),
install_requires=[
'requests',
'docstring_parser',
'litellm',
'colorlog',
'prompt_toolkit==3.0.43',
'anthropic>=0.25.6',
'openai>=1.0',
'click>=8.1.7',
'getch',
'markdown2'
],
python_requires='>=3.6',
author='Ben Baptist',
description='Luminos: CLI Utility for Integrating LLMs into the Shell',
license='MIT',
keywords='languagemodel tools shell',
url='https://github.com/benbaptist/luminos',
entry_points={
'console_scripts': [
'luminos = luminos.__main__:main',
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Operating System :: POSIX :: Linux",
]
)