Parcourir la source

Changed documentation to show application now works with Python3.

Benjamin Gleitzman il y a 12 ans
Parent
commit
37b4b9bc60
2 fichiers modifiés avec 7 ajouts et 4 suppressions
  1. 2 3
      README.rst
  2. 5 1
      setup.py

+ 2 - 3
README.rst

@@ -91,9 +91,8 @@ Author
 Notes
 -----
 
--  Requires Python <= 2.7 (pull requests for a Python 3 version certainly accepted)
--  Requires `PyQuery <http://pypi.python.org/pypi/pyquery>`_
--  A Windows executable with the howdoi application `is available here <https://dl.dropbox.com/u/101688/website/misc/howdoi.exe>`_.
+-  Works with Python2 and Python3
+-  A standalone Windows executable with the howdoi application `is available here <https://dl.dropbox.com/u/101688/website/misc/howdoi.exe>`_
 -  Special thanks to Rich Jones
    (`@miserlou <https://github.com/miserlou>`_) for the idea
 

+ 5 - 1
setup.py

@@ -41,11 +41,15 @@ setup(
     description='A code search tool',
     long_description=long_description,
     classifiers=[
-        "Development Status :: 4 - Beta",
+        "Development Status :: 5 - Production/Stable",
         "Environment :: Console",
         "Intended Audience :: Developers",
         "Programming Language :: Python :: 2",
+        "Programming Language :: Python :: 2.6",
         "Programming Language :: Python :: 2.7",
+        "Programming Language :: Python :: 3",
+        "Programming Language :: Python :: 3.2",
+        "Programming Language :: Python :: 3.3",
         "Topic :: Documentation",
     ],
     keywords='howdoi help console',