Author: Ronny Pfannschmidt <[email protected]>
Branch: codecheck-clean
Changeset: r212:cde0a6ed277a
Date: 2013-01-15 11:09 +0100
http://bitbucket.org/pypy/pyrepl/changeset/cde0a6ed277a/

Log:    clean setup.py

diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@
 # CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 # CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
-from setuptools import setup, Extension
+from setuptools import setup
 
 long_desc = """\
 pyrepl is a Python library, inspired by readline, for building flexible
@@ -31,17 +31,17 @@
 
 
 setup(
-    name = "pyrepl",
-    version = "0.8.4",
-    author = "Michael Hudson-Doyle",
-    author_email = "[email protected]",
+    name="pyrepl",
+    version="0.8.4",
+    author="Michael Hudson-Doyle",
+    author_email="[email protected]",
     maintainer="Ronny Pfannschmidt",
     maintainer_email="[email protected]",
-    url = "http://bitbucket.org/pypy/pyrepl/";,
-    license = "MIT X11 style",
-    description = "A library for building flexible command line interfaces",
-    platforms = ["unix", "linux"],
-    packages = ["pyrepl" ],
-    scripts = ["pythoni", "pythoni1"],
-    long_description = long_desc,
-    )
+    url="http://bitbucket.org/pypy/pyrepl/";,
+    license="MIT X11 style",
+    description="A library for building flexible command line interfaces",
+    platforms=["unix", "linux"],
+    packages=["pyrepl"],
+    scripts=["pythoni", "pythoni1"],
+    long_description=long_desc,
+)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to