Skip to content
This repository has been archived by the owner on Aug 7, 2020. It is now read-only.

Commit

Permalink
Fix distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Mar 7, 2020
1 parent 0055b4e commit be02906
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion mistletoe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Make mistletoe easier to import.
"""

__version__ = "0.9.1"
__version__ = "0.9.2"
__all__ = [
"renderers",
"base_elements",
Expand Down
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
from setuptools import setup
import mistletoe
from importlib import import_module

from setuptools import find_packages, setup


setup(
name="mistletoe-ebp",
version=mistletoe.__version__,
version=import_module("mistletoe").__version__,
description="A fast, extensible Markdown parser in pure Python.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
Expand All @@ -12,7 +14,7 @@
author="Chris Sewell",
author_email="chrisj_sewell@hotmail.com",
license="MIT",
packages=["mistletoe"],
packages=find_packages(),
entry_points={"console_scripts": ["mistletoe = mistletoe.__main__:main"]},
classifiers=[
"Development Status :: 3 - Alpha",
Expand Down

0 comments on commit be02906

Please sign in to comment.