Skip to content

Commit a9af7ea

Browse files
clean setup.py
1 parent ed345aa commit a9af7ea

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

setup.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
1818
# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1919

20-
from setuptools import setup, Extension
20+
from setuptools import setup
2121

2222
long_desc = """\
2323
pyrepl is a Python library, inspired by readline, for building flexible
@@ -31,17 +31,17 @@
3131

3232

3333
setup(
34-
name = "pyrepl",
35-
version = "0.8.4",
36-
author = "Michael Hudson-Doyle",
37-
author_email = "[email protected]",
34+
name="pyrepl",
35+
version="0.8.4",
36+
author="Michael Hudson-Doyle",
37+
author_email="[email protected]",
3838
maintainer="Ronny Pfannschmidt",
3939
maintainer_email="[email protected]",
40-
url = "http://bitbucket.org/pypy/pyrepl/",
41-
license = "MIT X11 style",
42-
description = "A library for building flexible command line interfaces",
43-
platforms = ["unix", "linux"],
44-
packages = ["pyrepl" ],
45-
scripts = ["pythoni", "pythoni1"],
46-
long_description = long_desc,
47-
)
40+
url="http://bitbucket.org/pypy/pyrepl/",
41+
license="MIT X11 style",
42+
description="A library for building flexible command line interfaces",
43+
platforms=["unix", "linux"],
44+
packages=["pyrepl"],
45+
scripts=["pythoni", "pythoni1"],
46+
long_description=long_desc,
47+
)

0 commit comments

Comments
 (0)