Skip to content

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
Technologicat committed Nov 21, 2019
1 parent bac6639 commit 48217f6
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,17 +326,17 @@ def my_yield(value, cc):
description=SHORTDESC,
long_description=DESC,

license = "BSD",
license="BSD",

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

# See
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
#
# for the standard classifiers.
#
classifiers = [ "Development Status :: 4 - Beta",
classifiers=["Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
Expand All @@ -346,33 +346,32 @@ def my_yield(value, cc):
"Programming Language :: Python :: 3.4",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
],
],

# See
# http://setuptools.readthedocs.io/en/latest/setuptools.html
#
setup_requires = [],
install_requires = [],
provides = ["unpythonic"],
setup_requires=[],
install_requires=[],
provides=["unpythonic"],

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

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

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

# Custom data files not inside a Python package
data_files = datafiles
data_files=datafiles
)

0 comments on commit 48217f6

Please sign in to comment.