Skip to content

Commit

Permalink
Corrected Python 3 support statements
Browse files Browse the repository at this point in the history
- Also changed some trove classifiers to reflect stable status and home automation support
  • Loading branch information
not-na committed Jul 22, 2019
1 parent 2757db1 commit a36d63e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ __pycache__/
# Distribution / packaging
.Python
env/
penv/
build/
develop-eggs/
dist/
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/gettingstarted.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ Due to its complexity, ``fritzctl`` needs multiple steps to be installed success
Requirements
^^^^^^^^^^^^

The :py:mod:`fritzctl` module needs the latest Python 2.7.x installed, see the `Official Python Website <https://www.python.org/downloads/>`_ and select the file appropriate for your system.
The :py:mod:`fritzctl` module needs the latest Python 3.x installed, see the `Official Python Website <https://www.python.org/downloads/>`_ and select the file appropriate for your system.

.. note::

This module currently does not work with Python 3.x, so be sure to click on Download Python 2.7.x.
This module has been developed with Python 2.7, but should also work with Python 3.7+.

In addition, you will also need to install both the :py:mod:`requests` and :py:mod:`simpletr64` modules.
See `Requests <http://docs.python-requests.org/en/master/user/install/#install>`_ for how to install requests and `simpletr64 <http://bpannier.github.io/simpletr64/html/install.html#install>`_ for how to install lxml.
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
install_requires=["requests", "simpletr64",],
provides=["fritzctl"],
classifiers=[
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",

"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
Expand All @@ -76,13 +76,14 @@

"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2 :: Only",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",

"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Monitoring",
"Topic :: Home Automation",
],
)

0 comments on commit a36d63e

Please sign in to comment.