|
17 | 17 | # CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
18 | 18 | # CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
19 | 19 |
|
20 |
| -from setuptools import setup, Extension |
| 20 | +from setuptools import setup |
21 | 21 |
|
22 | 22 | long_desc = """\
|
23 | 23 | pyrepl is a Python library, inspired by readline, for building flexible
|
|
31 | 31 |
|
32 | 32 |
|
33 | 33 | 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 | + |
38 | 38 | maintainer="Ronny Pfannschmidt",
|
39 | 39 | 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