From b225439188d460fa431d74974b1d7edcf3082334 Mon Sep 17 00:00:00 2001 From: belerico Date: Sat, 11 Apr 2020 15:39:39 +0200 Subject: [PATCH] Add version 0.1.5 --- MANIFEST.in | 4 +++- py_asciimath/__init__.py | 2 +- setup.py | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index a7ad28c..8334071 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,3 @@ -include LICENSE README.md \ No newline at end of file +include LICENSE +include README.md +recursive-include py_asciimath/dtd/ * \ No newline at end of file diff --git a/py_asciimath/__init__.py b/py_asciimath/__init__.py index c4c3685..efef02a 100644 --- a/py_asciimath/__init__.py +++ b/py_asciimath/__init__.py @@ -1,4 +1,4 @@ import os PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__)) -__version__ = "0.1.4" +__version__ = "0.1.5" diff --git a/setup.py b/setup.py index f306802..ab2ee65 100644 --- a/setup.py +++ b/setup.py @@ -20,6 +20,7 @@ long_description_content_type="text/markdown", url="https://github.com/belerico/py-asciimath", packages=setuptools.find_packages(), + include_package_data=True, entry_points={ "console_scripts": ["py_asciimath=py_asciimath.py_asciimath:main"] },