-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (51 loc) · 1.61 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
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, find_packages, Command
import os
class RunSystemInfo(Command):
description = "Run init script: Gather System Details to Help AI Helper"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
from setup import noizu_help_init
si = noizu_help_init.system_info()
noizu_help_init.update_config(si)
setup(
name="noizu_ops",
version="0.1.1",
url='https://github.com/noizu-labs-ml/noizu-ops',
packages=find_packages(),
package_data={
'noizu_ops': ['config/*.yml']
},
cmdclass={
'run_system_info': RunSystemInfo,
},
install_requires=[
"openai",
"rich",
"MarkupSafe",
"pyyaml",
"python-slugify",
"psutil",
"argcomplete"
],
entry_points={
"console_scripts": [
"noizu-ops = noizu_ops.bin.noizu_ops:main",
],
'argcomplete.completers': [
'noizu-ops = noizu_ops.bin.noizu_ops:main'
]
},
author="Keith Brings",
author_email="[email protected]",
description="Command line LLM interface. Generate how to/answer system queries. Command passing in your system info to better target response, GPT self reflection used to improve final results. (but it's slow as heck.)",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
],
)