| @@ -1,8 +1,7 @@ | |||||
| #!/usr/bin/env python | #!/usr/bin/env python | ||||
| import os | import os | ||||
| import re | |||||
| from setuptools import setup, find_packages | |||||
| from setuptools import setup | |||||
| url = "https://github.com/pycontribs/wstools.git" | url = "https://github.com/pycontribs/wstools.git" | ||||
| @@ -12,9 +11,9 @@ def read(*rnames): | |||||
| os.path.join('.', *rnames) | os.path.join('.', *rnames) | ||||
| ).read() | ).read() | ||||
| long_description = """WSDL parsing services package for Web Services for Python. see """ + url \ | |||||
| + read('README.txt')\ | |||||
| + read('CHANGES.txt')\ | |||||
| long_description = \ | |||||
| "WSDL parsing services package for Web Services for Python. see" \ | |||||
| + url + read('README.mdown') + read('CHANGES.txt') | |||||
| from wstools.version import __version__ | from wstools.version import __version__ | ||||
| @@ -27,7 +26,8 @@ setup( | |||||
| version=__version__, | version=__version__, | ||||
| description="wstools", | description="wstools", | ||||
| maintainer="Gregory Warnes, kiorky, sorin", | maintainer="Gregory Warnes, kiorky, sorin", | ||||
| maintainer_email="Gregory.R.Warnes@Pfizer.com, kiorky@cryptelium.net, sorin.sbarnea+os@gmail.com", | |||||
| maintainer_email="Gregory.R.Warnes@Pfizer.com, " | |||||
| + " kiorky@cryptelium.net, " + "sorin.sbarnea+os@gmail.com", | |||||
| url=url, | url=url, | ||||
| long_description=long_description, | long_description=long_description, | ||||
| packages=['wstools'], | packages=['wstools'], | ||||