From acc8ab9d079fbca57530c73b3ede84bf7bb50feb Mon Sep 17 00:00:00 2001 From: Veit Heller Date: Mon, 16 Jun 2014 15:35:53 +0200 Subject: [PATCH] Updated setup --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 5603aeb..c56d370 100644 --- a/setup.py +++ b/setup.py @@ -4,14 +4,17 @@ An installation script for _ using distutils. """ from distutils.core import setup -import _ + +with open("README.md") as f: + long_description = f.read() setup( name = '_', description = 'Allows you to write Python scripts using exclusively _', author = "Veit Heller", author_email = "veit.heller@htw-berlin.de", - version = "0.1.0", + version = "0.1.0 Alpha", + long_description = long_description, url = "https://git.com/hellerve/_", packages = ['_',], license = "MIT",