Updated setup

This commit is contained in:
Veit Heller
2014-10-21 00:05:27 +02:00
parent 8ec97cfc2a
commit 7a856157a4
2 changed files with 4 additions and 4 deletions

View File

@@ -91,7 +91,7 @@ class Finder:
filename = os.path.join(dirname, fullname) filename = os.path.join(dirname, fullname)
if os.path.exists(filename): if os.path.exists(filename):
return UnderScoreLoader(filename) return UnderScoreLoader(filename)
else if os.path.exists(filename + ".us"): elif os.path.exists(filename + ".us"):
return UnderScoreLoader(filename + ".us") return UnderScoreLoader(filename + ".us")
class UnderScoreLoader: class UnderScoreLoader:

View File

@@ -10,10 +10,10 @@ with open("README.md") as f:
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@veitheller.de",
version = "0.1.0 Alpha", version = "1.0 Stable",
long_description = long_description, long_description = long_description,
url = "https://github.com/hellerve/_", url = "https://github.com/hellerve/_",
packages = ['_',], packages = ['_',],