From f79eefd4823d68d7c385bacc822084bbf921abf4 Mon Sep 17 00:00:00 2001 From: Ajda Pretnar Date: Thu, 28 Nov 2019 14:23:43 +0100 Subject: [PATCH] Provide separate README for PyPi --- README.pypi | 7 +++++++ setup.py | 9 +++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 README.pypi diff --git a/README.pypi b/README.pypi new file mode 100644 index 0000000..a0ece3b --- /dev/null +++ b/README.pypi @@ -0,0 +1,7 @@ +Orange3 Data Fusion +=================== + +Orange add-on with widgets for integration of large heterogeneous data sets into + sensible clusters of related data instances. The widgets enable matrix + tri-factorization, latent factor identification, matrix sampling, model + scoring, chaining and more. \ No newline at end of file diff --git a/setup.py b/setup.py index 0eb2cc2..8251696 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,13 @@ #!/usr/bin/env python +from os import path from setuptools import setup, find_packages -import distutils + VERSION = '0.1.11' +README_FILE = path.join(path.dirname(__file__), 'README.pypi') +LONG_DESCRIPTION = open(README_FILE).read() + ENTRY_POINTS = { 'orange3.addon': ( 'datafusion = orangecontrib.datafusion', @@ -32,9 +36,10 @@ setup( name="Orange3-DataFusion", description="Orange DataFusion add-on.", + long_description=LONG_DESCRIPTION, version=VERSION, author='Bioinformatics Laboratory, FRI UL', - author_email='contact@orange.biolab.si', + author_email='info@biolab.si', url='https://github.com/biolab/orange3-datafusion', keywords=( 'data mining',