Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DavyJonesCodes authored Aug 21, 2024
1 parent 5590340 commit a4f8bbf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
from setuptools import setup, find_packages

with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()

setup(
name="PyTweetToolkit",
version="1.0.0",
version="1.0.1",
author='Dev Jones',
author_email='[email protected]',
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
long_description=open('README.md').read(),
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/DavyJonesCodes/PyTweetToolkit',
packages=find_packages(),
Expand Down

0 comments on commit a4f8bbf

Please sign in to comment.