From 11bbc0b9c16e8133337d5e6ba185f9e90b45afcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Salvi=20Sol=C3=A0=20Martinell?= Date: Tue, 13 Oct 2020 19:04:52 +0200 Subject: [PATCH] adding extra info for PyPI --- VERSION | 2 +- setup.py | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index ee6cdce3..b6160487 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.1 +0.6.2 diff --git a/setup.py b/setup.py index 177c32a5..b567af63 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,26 @@ import setuptools +# read the contents of the README.md file +from os import path +this_directory = path.abspath(path.dirname(__file__)) +with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: + long_description = f.read() + setuptools.setup( name="dislib", version=open('VERSION').read().strip(), author="Barcelona Supercomputing Center", author_email="compss@bsc.es", description="The distributed computing library on top of PyCOMPSs", + long_description=long_description, + long_description_content_type='text/markdown', url="http://dislib.bsc.es", + project_urls={ + 'Documentation': 'http://dislib.bsc.es', + 'Source': 'https://github.com/bsc-wdc/dislib', + 'Tracker': 'https://github.com/bsc-wdc/dislib/issues', + }, packages=setuptools.find_packages(), classifiers=[ "Programming Language :: Python :: 3 :: Only",