-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 1.04 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
from setuptools import setup, find_packages
setup(
name="ai-shell-loop",
use_scm_version=True,
setup_requires=['setuptools_scm'],
description="A command line tool that lets an AI do work for you.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author="Carlos Freund",
author_email="[email protected]",
license="Apache License 2.0",
url="https://github.com/happyherp/ai-shell-loop",
packages=find_packages(),
entry_points={
'console_scripts': [
'ai-do=ai_shell.aishell:main',
],
},
install_requires=[
'openai==1.70.0',
'pydantic==2.9.1',
'PyYAML==6.0.2',
'appdirs==1.4.4'
],
python_requires='>=3.6',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux", # For Linux systems
"Operating System :: MacOS :: MacOS X", # For macOS
],
)