-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5590340
commit a4f8bbf
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(), | ||
|