Updated setup

This commit is contained in:
Veit Heller
2014-06-16 15:35:53 +02:00
parent e134bba340
commit acc8ab9d07

View File

@@ -4,14 +4,17 @@ An installation script for _ using distutils.
""" """
from distutils.core import setup from distutils.core import setup
import _
with open("README.md") as f:
long_description = f.read()
setup( setup(
name = '_', name = '_',
description = 'Allows you to write Python scripts using exclusively _', description = 'Allows you to write Python scripts using exclusively _',
author = "Veit Heller", author = "Veit Heller",
author_email = "veit.heller@htw-berlin.de", 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/_", url = "https://git.com/hellerve/_",
packages = ['_',], packages = ['_',],
license = "MIT", license = "MIT",