Skip to content

Commit

Permalink
pep8 and pylint fixes. Add support for different DSA parameters.
Browse files Browse the repository at this point in the history
Fixes #9
  • Loading branch information
Olli Jarva committed Apr 12, 2016
1 parent e46c4f8 commit 484fe82
Show file tree
Hide file tree
Showing 9 changed files with 365 additions and 275 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
install: "pip install -r requirements.txt"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ecdsa==0.11
ecdsa==0.13
pycrypto==2.6.1
13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from setuptools import setup, find_packages
from codecs import open
from setuptools import setup
from codecs import open as codecs_open
from os import path

here = path.abspath(path.dirname(__file__))

with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
with codecs_open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='sshpubkeys',
version='1.0.6',
version='1.0.7',
description='SSH public key parser',
long_description=long_description,
url='https://github.com/ojarva/python-sshpubkeys',
Expand All @@ -31,14 +31,15 @@
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: PyPy',
],
keywords='ssh pubkey public key openssh ssh-rsa ssh-dss ssh-ed25519',
packages=["sshpubkeys"],
test_suite="tests",
install_requires=['pycrypto>=2.6', 'ecdsa>=0.11'],
install_requires=['pycrypto>=2.6', 'ecdsa>=0.13'],

extras_require = {
extras_require={
'dev': ['twine', 'wheel'],
},
)

0 comments on commit 484fe82

Please sign in to comment.