Skip to content

Commit a4f8bbf

Browse files
Update setup.py
1 parent 5590340 commit a4f8bbf

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
from setuptools import setup, find_packages
22

3+
with open('README.md', 'r', encoding='utf-8') as f:
4+
long_description = f.read()
5+
36
setup(
47
name="PyTweetToolkit",
5-
version="1.0.0",
8+
version="1.0.1",
69
author='Dev Jones',
710
author_email='[email protected]',
811
description='PyTweetToolkit: An intuitive Python library for managing Twitter interactions, providing tools for posting tweets, engaging with users, and analyzing social media metrics. Perfect for automating tasks and integrating Twitter functionality into Python projects.', # Short project description
9-
long_description=open('README.md').read(),
12+
long_description=long_description,
1013
long_description_content_type='text/markdown',
1114
url='https://github.com/DavyJonesCodes/PyTweetToolkit',
1215
packages=find_packages(),

0 commit comments

Comments
 (0)