diff --git a/VERSION b/VERSION index 81340c7..bbdeab6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.4 +0.0.5 diff --git a/setup.py b/setup.py index 21a1de6..472fe31 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ from setuptools import setup +from pathlib import Path with open('VERSION') as f: version = f.read().strip() @@ -11,6 +12,6 @@ author='Edgar Wolf', author_email='edgar.wolf@hs-kempten.de', description='A package to benchmark process drift detection', - long_description='A package to benchmark process drift detection', + long_description=(Path(__file__).parent / "README.md").read_text(), long_description_content_type='text/markdown', )