From ef95863735d2d33e12e99322d0293e6765846901 Mon Sep 17 00:00:00 2001 From: Chris Kerr Date: Sun, 10 Mar 2019 09:51:34 +0100 Subject: [PATCH] Use README.md for long_description --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.py b/setup.py index 0d26328..f1dd8b7 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,18 @@ # -*- coding: utf-8 -*- +import os.path + from setuptools import setup +with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f: + readme = f.read() + setup( name='galvani', version='0.0.1a1', description='Open and process battery charger log data files', + long_description=readme, + long_description_content_type="text/markdown", url='https://github.com/chatcannon/galvani', author='Chris Kerr', author_email='chris.kerr@mykolab.ch',