You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36 lines
812 B

  1. #!/usr/bin/env python
  2. import os
  3. import re
  4. from setuptools import setup, find_packages
  5. url = "https://github.com/pycontribs/wstools.git"
  6. def read(*rnames):
  7. return "\n" + open(
  8. os.path.join('.', *rnames)
  9. ).read()
  10. long_description = """WSDL parsing services package for Web Services for Python. see """ + url \
  11. + read('README.txt')\
  12. + read('CHANGES.txt')\
  13. from wstools.version import __version__
  14. install_requires = [
  15. 'docutils'
  16. ]
  17. setup(
  18. name="wstools",
  19. version=__version__,
  20. description="wstools",
  21. maintainer="Gregory Warnes, kiorky, sorin",
  22. maintainer_email="Gregory.R.Warnes@Pfizer.com, kiorky@cryptelium.net, sorin.sbarnea+os@gmail.com",
  23. url=url,
  24. long_description=long_description,
  25. packages=['wstools'],
  26. install_requires=install_requires,
  27. )