From 7a856157a4f38e5d92b72274f19a480e0822be1a Mon Sep 17 00:00:00 2001 From: Veit Heller Date: Tue, 21 Oct 2014 00:05:27 +0200 Subject: [PATCH] Updated setup --- _/__init__.py | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_/__init__.py b/_/__init__.py index f6bc0b8..2cdb4c2 100644 --- a/_/__init__.py +++ b/_/__init__.py @@ -91,7 +91,7 @@ class Finder: filename = os.path.join(dirname, fullname) if os.path.exists(filename): return UnderScoreLoader(filename) - else if os.path.exists(filename + ".us"): + elif os.path.exists(filename + ".us"): return UnderScoreLoader(filename + ".us") class UnderScoreLoader: diff --git a/setup.py b/setup.py index a738dfe..51c07c0 100644 --- a/setup.py +++ b/setup.py @@ -10,10 +10,10 @@ with open("README.md") as f: setup( name = '_', - description = 'Allows you to write Python scripts using exclusively _', + description = 'Allows you to write Python scripts using _ exclusively', author = "Veit Heller", - author_email = "veit.heller@htw-berlin.de", - version = "0.1.0 Alpha", + author_email = "veit@veitheller.de", + version = "1.0 Stable", long_description = long_description, url = "https://github.com/hellerve/_", packages = ['_',],