Update PyPI classifiers and required python version

This commit is contained in:
Mads Marquart
2019-08-28 21:24:59 +02:00
parent 5ee93b760a
commit 330473a092
2 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@ This project was inspired by `facebook-chat-api <https://github.com/Schmavery/fa
**No XMPP or API key is needed**. Just use your email and password. **No XMPP or API key is needed**. Just use your email and password.
Currently ``fbchat`` support Python 2.7, 3.4, 3.5 and 3.6: Currently ``fbchat`` support Python 3.5, 3.6, 3.7 and 3.8:
``fbchat`` works by emulating the browser. ``fbchat`` works by emulating the browser.
This means doing the exact same GET/POST requests and tricking Facebook into thinking it's accessing the website normally. This means doing the exact same GET/POST requests and tricking Facebook into thinking it's accessing the website normally.

View File

@@ -27,12 +27,12 @@ classifiers = [
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Natural Language :: English", "Natural Language :: English",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Communications :: Chat", "Topic :: Communications :: Chat",
@@ -41,7 +41,7 @@ classifiers = [
"Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries :: Python Modules",
] ]
requires-python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4.0" requires-python = ">=3.5, <4.0"
keywords = "Facebook FB Messenger Library Chat Api Bot" keywords = "Facebook FB Messenger Library Chat Api Bot"
license = "BSD 3-Clause" license = "BSD 3-Clause"