Skip to content

Commit

Permalink
Merge pull request #68 from vc1492a/67-display-readme-properly-on-pypi
Browse files Browse the repository at this point in the history
67 display readme properly on pypi
  • Loading branch information
vc1492a authored Oct 21, 2024
2 parents bbdd12a + 85312da commit f78929a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
File renamed without changes.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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'],
Expand All @@ -9,6 +13,8 @@
'method providing an outlier score in the range of [0,1].',
author='Valentino Constantinou',
author_email='[email protected]',
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',
Expand Down

0 comments on commit f78929a

Please sign in to comment.