Skip to content

Commit

Permalink
Indent according to PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
wosc committed Nov 27, 2012
1 parent 6ced10a commit c1112f9
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions setup.py
@@ -1,21 +1,20 @@
name, version = 'ectoken', '0.2'
name, version='ectoken', '0.2'

from distutils.core import setup, Extension
from distutils.sysconfig import get_python_lib

blowfish = Extension(
name = '_ecblowfish',
sources = ['blowfish.c'],
blowfish=Extension(
name='_ecblowfish',
sources=['blowfish.c'],
libraries=['crypto'],
)

setup(
name=name,
version=version,
description='Python implementation of EdgeCast Token (ectoken_generate)',
author="Sebastien Estienne",
author_email="sebastien.estienned@gmail.com",
url="https://github.com/sebest/ectoken-py",
py_modules=['ectoken'],
ext_modules = [blowfish],
name=name,
version=version,
description='Python implementation of EdgeCast Token (ectoken_generate)',
author="Sebastien Estienne",
author_email="sebastien.estienned@gmail.com",
url="https://github.com/sebest/ectoken-py",
py_modules=['ectoken'],
ext_modules=[blowfish],
)

0 comments on commit c1112f9

Please sign in to comment.