From 68f2ae2b85bd8bdc7406de3c4e6f6726a85b2048 Mon Sep 17 00:00:00 2001 From: "German M. Bravo" Date: Thu, 22 Dec 2011 04:01:47 -0600 Subject: Version 1.0.9 release --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 7bf01d0..ac21539 100644 --- a/setup.py +++ b/setup.py @@ -3,13 +3,15 @@ from setuptools import setup from scss.scss_meta import PROJECT, URL, VERSION, AUTHOR, AUTHOR_EMAIL, LICENSE, DOWNLOAD_URL + def read(fname): import os try: - return open(os.path.join(os.path.dirname( __file__ ), fname)).read().strip() + return open(os.path.join(os.path.dirname(__file__), fname)).read().strip() except IOError: return '' + extra = {} import sys if sys.version_info >= (3, 0): @@ -17,6 +19,7 @@ if sys.version_info >= (3, 0): use_2to3=True, ) + setup(name=PROJECT, version=VERSION, description=read('DESCRIPTION'), @@ -38,7 +41,7 @@ setup(name=PROJECT, "Topic :: Text Processing :: Markup", "Topic :: Software Development :: Libraries :: Python Modules" ], - entry_points = """ + entry_points=""" [console_scripts] pyscss = scss:main """, -- cgit v1.2.1