Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Documentation
Topic :: Text Processing :: Filters
Topic :: Text Processing :: Markup :: HTML
"""
script = (sys.platform == "win32" and "lib\\markdown2.py" or "bin/markdown2")
setup(
name="markdown2",
version=markdown2.__version__,
maintainer="Trent Mick",
maintainer_email="trentm@gmail.com",
author="Trent Mick",
author_email="trentm@gmail.com",
url="https://github.com/trentm/python-markdown2",
license="MIT",
platforms=["any"],
py_modules=["markdown2"],
package_dir={"": "lib"},
scripts=[script],
description="A fast and complete Python implementation of Markdown",
classifiers=filter(None, classifiers.split("\n")),
long_description="""markdown2: A fast and complete Python implementation of Markdown.