diff --git a/readme.md b/readme.md index db59d4c..b4f28f4 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ -Complete implementation of the undocumented Twitter API +Implementation of Twitter's v1, v2, and GraphQL APIs -Includes tools to **scrape**, **automate**, and **search** twitter +Includes tools to **scrape**, **automate**, and **search**. * [Installation](#installation) * [Automation](#automation) diff --git a/setup.py b/setup.py index 0fb329a..bd23c9d 100644 --- a/setup.py +++ b/setup.py @@ -13,22 +13,14 @@ install_requires = [ setup( name="twitter-api-client", - version="0.7.5", + version="0.7.6", python_requires=">=3.11.0", description="Twitter API", long_description=dedent(''' - Complete implementation of the undocumented Twitter API - - Includes tools to **scrape**, **automate**, and **search** twitter - - * [Installation](#installation) - * [Automation](#automation) - * [Scraping](#scraping) - * [Get all user/tweet data](#get-all-usertweet-data) - * [Get user/tweet data (no auth)](#get-usertweet-data-no-auth) - * [Search](#search) - * [Notes](#notes) + Implementation of Twitter's v1, v2, and GraphQL APIs + Includes tools to **scrape**, **automate**, and **search**. + ### Automation ```python @@ -239,7 +231,7 @@ setup( long_description_content_type='text/markdown', author="Trevor Hobenshield", author_email="trevorhobenshield@gmail.com", - url="https://github.com/trevorhobenshield/twitter-api", + url="https://github.com/trevorhobenshield/twitter-api-client", install_requires=install_requires, keywords="twitter api client async search automation bot scrape", packages=find_packages(),