From 62198061f8c5d285cf23bf1cc074abade22cdbf0 Mon Sep 17 00:00:00 2001 From: Veit Heller Date: Sun, 15 Jun 2014 21:50:03 +0200 Subject: [PATCH] Added setup script --- _/{_.py => __init__.py} | 0 setup.py | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+) rename _/{_.py => __init__.py} (100%) create mode 100644 setup.py diff --git a/_/_.py b/_/__init__.py similarity index 100% rename from _/_.py rename to _/__init__.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ae0867e --- /dev/null +++ b/setup.py @@ -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'] +) + +