Make the code Python3 ready

This commit is contained in:
Raphaël Vinot 2015-04-30 13:50:59 +02:00
parent b54dc68991
commit 2580192632
3 changed files with 6 additions and 5 deletions

2
.gitignore vendored
View file

@ -1,4 +1,4 @@
build/
dist/
*.egg-info/
*.pyc

View file

@ -1 +1 @@
from api import PyPSSL
from .api import PyPSSL

View file

@ -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',
],