Skip to content

Commit 1bfc6e2

Browse files
committed
setup long description for pypi, bump version
1 parent db47a2a commit 1bfc6e2

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,23 @@ def parse_requirements(filename):
77
return [line for line in lineiter if line and not line.startswith("#")]
88

99

10+
with open('README.md') as f:
11+
readme = f.read()
12+
13+
1014
install_requires = parse_requirements('requirements.txt')
1115
setup(
1216
name='powerpoint_generative_ai',
1317
packages=find_packages(),
14-
version='0.1.5',
18+
version='0.1.6',
1519
license='MIT',
1620
description='Library written by Width.Ai. Streamlines the utilization of GPT models for automatic PowerPoint content generation. Also offers semantic searches on slide content, enabling you to quickly pinpoint relevant information',
21+
long_description=readme,
22+
long_description_content_type='text/markdown',
1723
author='Patrick Hennis',
1824
author_email='[email protected]',
1925
url='https://github.com/Width-ai/powerpoint-generative-ai',
20-
download_url='https://github.com/Width-ai/powerpoint-generative-ai/archive/refs/tags/v0.1.5.tar.gz',
26+
download_url='https://github.com/Width-ai/powerpoint-generative-ai/archive/refs/tags/v0.1.6.tar.gz',
2127
keywords=['LLM', 'Semantic Search', 'PowerPoints'],
2228
install_requires=install_requires,
2329
classifiers=[

0 commit comments

Comments
 (0)