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",