Added setup script

This commit is contained in:
Veit Heller
2014-06-15 21:50:03 +02:00
parent 5b94374497
commit 62198061f8
2 changed files with 21 additions and 0 deletions

21
setup.py Normal file
View File

@@ -0,0 +1,21 @@
#!/usr/bin/env python
"""
An installation script for _ using distutils.
"""
from distutils.core import setup
import _
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",
url = "https://git.com/hellerve/_",
packages = ['_'],
license = "MIT",
platforms = ['Linux', 'OS X', 'Windows']
)