Browse Source

fixing setup.py

main
Julien Iguchi-Cartigny 10 years ago
parent
commit
6db09021ed
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      setup.py

+ 6
- 6
setup.py View File

@@ -1,8 +1,7 @@
#!/usr/bin/env python

import os
import re
from setuptools import setup, find_packages
from setuptools import setup

url = "https://github.com/pycontribs/wstools.git"

@@ -12,9 +11,9 @@ def read(*rnames):
os.path.join('.', *rnames)
).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__

@@ -27,7 +26,8 @@ setup(
version=__version__,
description="wstools",
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,
long_description=long_description,
packages=['wstools'],


Loading…
Cancel
Save