-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 868 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
36
37
import os
import setuptools
VERSION = '0.1.0'
with open('README.md', encoding='utf8') as f:
long_description = f.read()
setuptools.setup(
name='claii',
version=VERSION,
author='Wensheng Wang',
author_email='[email protected]',
description='claii - Command Line AI Interface',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/wensheng/claii',
project_urls={
'Issues': 'https://github.com/wensheng/claii/issues',
},
license='Apache License, Version 2.0',
packages=['claii'],
entry_points={
'console_scripts': [
'claii = claii:cli'
]
},
install_requires=[
'click',
'openai',
'chromadb',
'python-dotenv',
],
python_requires='>=3.6',
include_package_data=True,
)