Skip to content

Commit

Permalink
Aligned setup.py() parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
dotpy committed Mar 19, 2015
1 parent 189d2c3 commit 21f09f4
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions setup.py
Expand Up @@ -28,25 +28,25 @@
DistributionMetadata.classifiers = None
DistributionMetadata.download_url = None

setup(name = "step-template",
version = __version__,
author = "Daniele Mazzocchio",
author_email = "danix@kernel-panic.it",
packages = ["step", "step.tests"],
cmdclass = {"test": TestCommand},
description = "Simple Template Engine for Python",
classifiers = ["Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Text Processing"],
url="https://github.com/dotpy/step",
license="BSD",
keywords="templates templating template-engines",
long_description="step is a pure-Python module providing a very "
"simple template engine with minimum syntax. It supports variable "
"expansion, flow control and embedding of Python code.",
)
setup(name = "step-template",
version = __version__,
author = "Daniele Mazzocchio",
author_email = "danix@kernel-panic.it",
packages = ["step", "step.tests"],
cmdclass = {"test": TestCommand},
description = "Simple Template Engine for Python",
classifiers = ["Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Text Processing"],
url = "https://github.com/dotpy/step",
license = "OSI-Approved :: BSD License",
keywords = "templates templating template-engines",
long_description = "step is a pure-Python module providing a very "
"simple template engine with minimum syntax. It "
"supports variable expansion, flow control and "
"embedding of Python code.")

0 comments on commit 21f09f4

Please sign in to comment.