-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (31 loc) · 1.02 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
from setuptools import setup, find_packages
from az.utils import remove_images_from_markdown
# Read the content of README.md
with open('README.md', 'r') as f:
readme_content = f.read()
# Remove images from the readme content
readme_content_without_images = remove_images_from_markdown(readme_content)
setup(
name='azc',
version='1.2.0',
packages=find_packages(),
install_requires=open('requirements.txt').read().splitlines(),
author='Sagi Smolarski',
author_email='sagism@gmail.com',
description='Command-line tool for interacting with LLMs',
long_description=readme_content_without_images,
long_description_content_type='text/markdown',
url='https://github.com/sagism/azc',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
py_modules=['az'],
entry_points={
'console_scripts': [
'azc=az.az:main',
],
}
)