diff --git a/LICENSE.txt b/LICENSE similarity index 100% rename from LICENSE.txt rename to LICENSE diff --git a/setup.py b/setup.py index 9b9efc6..6a42f51 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,9 @@ from setuptools import setup +from pathlib import Path +this_directory = Path(__file__).parent +long_description = (this_directory / "README.md").read_text() + setup( name='PyNomaly', packages=['PyNomaly'], @@ -9,6 +13,8 @@ 'method providing an outlier score in the range of [0,1].', author='Valentino Constantinou', author_email='vc@valentino.io', + long_description=long_description, + long_description_content_type='text/markdown', url='https://github.com/vc1492a/PyNomaly', download_url='https://github.com/vc1492a/PyNomaly/archive/0.3.4.tar.gz', keywords=['outlier', 'anomaly', 'detection', 'machine', 'learning',