From f96124bd8a2514b44bae6d22e63162d0b71f047b Mon Sep 17 00:00:00 2001 From: montag451 Date: Sat, 23 Mar 2013 01:57:42 +0100 Subject: [PATCH] Change version number (v1.0 -> v2.0) --- README.rst | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index c2332b1..ce98b06 100644 --- a/README.rst +++ b/README.rst @@ -9,7 +9,7 @@ Installation and Dependencies ----------------------------- Install ``pytun`` with ``pip install python-pytun`` or `download this archive -`_, decompress it and +`_, decompress it and execute ``python setup.py install``. As ``pytun`` is a C module you will need a compiler (e.g GCC) and the Python developpement headers installed on your system (e.g on Debian-like distribution check that ``build-essential`` and diff --git a/setup.py b/setup.py index 2c99514..8f9e24b 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ url='https://github.com/montag451/pytun', description='Linux TUN/TAP wrapper for Python', long_description=open('README.rst').read(), - version='1.0', + version='2.0', ext_modules=[Extension('pytun', ['pytun.c'])], classifiers=[ 'Development Status :: 5 - Production/Stable', @@ -16,6 +16,7 @@ 'License :: OSI Approved :: MIT License', 'Operating System :: POSIX :: Linux', 'Programming Language :: C', - 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Networking'])