-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (48 loc) · 1.7 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
from setuptools import setup, find_packages
# Safely read the README.md file with UTF-8 encoding
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='auto_reflection',
version='1.0.3',
packages=find_packages(),
install_requires=[
'PyYAML',
'pypubsub',
'openai'
],
entry_points={
'console_scripts': [
'topics=auto_reflection.topics:main',
'titles=auto_reflection.titles:main',
'section=auto_reflection.section:main',
],
},
include_package_data=True,
author='Alex Buzunov',
author_email='alex_buz@yahoo.com',
description='An AI-powered blog-writing pipeline with reflection-based agents using YAML configuration and mock data handling',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/myaichat/auto_reflection',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries',
'Operating System :: OS Independent',
],
python_requires='>=3.8',
project_urls={
'Source': 'https://github.com/myaichat/auto_reflection',
'Tracker': 'https://github.com/myaichat/auto_reflection/issues',
},
changelog = """
Version 1.0.2:
- Added section pipeline to get section body for your blog theme, title and topic
"""
)