Skip to content

Commit

Permalink
Bumped version to 18.10.2, minor fix in setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
Hultner committed Oct 16, 2018
1 parent 35c8ef7 commit a8b0d6d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Author: Alexander Hultnér, 2018
"""

from setuptools import setup
from setuptools import setup, find_packages

with open("README.md") as f:
long_description = f.read()
Expand All @@ -20,8 +20,9 @@
description="A markdown renderer focusing on security first",
long_description=long_description,
long_description_content_type="text/markdown",
version="18.10.1",
version="18.10.2",
py_modules=["app"],
packages=find_packages(exclude=["tests"]),
install_requires=["cmarkgfm", "bleach"],
extras_require={"dev": ["black", "pytest", "twine", "pytest-cov", "codacy-coverage"]},
classifiers=[
Expand Down

0 comments on commit a8b0d6d

Please sign in to comment.