From 2580192632ae2b8cbc0c18bf14554cf106e022f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Thu, 30 Apr 2015 13:50:59 +0200 Subject: [PATCH] Make the code Python3 ready --- .gitignore | 2 +- client/pypssl/__init__.py | 2 +- client/setup.py | 7 ++++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 8f1becb..0f0a128 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ build/ dist/ *.egg-info/ - +*.pyc diff --git a/client/pypssl/__init__.py b/client/pypssl/__init__.py index 474fdd2..a57b225 100644 --- a/client/pypssl/__init__.py +++ b/client/pypssl/__init__.py @@ -1 +1 @@ -from api import PyPSSL +from .api import PyPSSL diff --git a/client/setup.py b/client/setup.py index a498a13..6435e0b 100644 --- a/client/setup.py +++ b/client/setup.py @@ -4,7 +4,7 @@ from setuptools import setup setup( name='pypssl', - version='1.0.1', + version='1.1', author='Raphaël Vinot', author_email='raphael.vinot@circl.lu', maintainer='Raphaël Vinot', @@ -14,11 +14,12 @@ setup( packages=['pypssl'], classifiers=[ 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', - 'Development Status :: 3 - Alpha', + 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Science/Research', 'Intended Audience :: Telecommunications Industry', - 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', 'Topic :: Security', 'Topic :: Internet', ],