Skip to content

Commit 48217f6

Browse files
committed
pep8
1 parent bac6639 commit 48217f6

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

setup.py

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -326,17 +326,17 @@ def my_yield(value, cc):
326326
description=SHORTDESC,
327327
long_description=DESC,
328328

329-
license = "BSD",
329+
license="BSD",
330330

331331
# free-form text field; http://stackoverflow.com/questions/34994130/what-platforms-argument-to-setup-in-setup-py-does
332-
platforms = ["Linux"],
332+
platforms=["Linux"],
333333

334334
# See
335335
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
336336
#
337337
# for the standard classifiers.
338338
#
339-
classifiers = [ "Development Status :: 4 - Beta",
339+
classifiers=["Development Status :: 4 - Beta",
340340
"Environment :: Console",
341341
"Intended Audience :: Developers",
342342
"License :: OSI Approved :: BSD License",
@@ -346,33 +346,32 @@ def my_yield(value, cc):
346346
"Programming Language :: Python :: 3.4",
347347
"Topic :: Software Development :: Libraries",
348348
"Topic :: Software Development :: Libraries :: Python Modules"
349-
],
349+
],
350350

351351
# See
352352
# http://setuptools.readthedocs.io/en/latest/setuptools.html
353353
#
354-
setup_requires = [],
355-
install_requires = [],
356-
provides = ["unpythonic"],
354+
setup_requires=[],
355+
install_requires=[],
356+
provides=["unpythonic"],
357357

358358
# keywords for PyPI (in case you upload your project)
359359
#
360360
# e.g. the keywords your project uses as topics on GitHub, minus "python" (if there)
361361
#
362-
keywords = ["functional-programming", "language-extension", "syntactic-macros",
362+
keywords=["functional-programming", "language-extension", "syntactic-macros",
363363
"tail-call-optimization", "tco", "continuations", "currying", "lazy-evaluation",
364364
"dynamic-variable", "macros", "lisp", "scheme", "racket", "haskell"],
365365

366366
# Declare packages so that python -m setup build will copy .py files (especially __init__.py).
367367
#
368368
# This **does not** automatically recurse into subpackages, so they must also be declared.
369369
#
370-
packages = ["unpythonic", "unpythonic.syntax"],
371-
scripts = ["macropy3"],
370+
packages=["unpythonic", "unpythonic.syntax"],
371+
scripts=["macropy3"],
372372

373-
zip_safe = False, # macros are not zip safe, because the zip importer fails to find sources, and MacroPy needs them.
373+
zip_safe=False, # macros are not zip safe, because the zip importer fails to find sources, and MacroPy needs them.
374374

375375
# Custom data files not inside a Python package
376-
data_files = datafiles
376+
data_files=datafiles
377377
)
378-

0 commit comments

Comments
 (0)