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.
 
 
 

35 lines
748 B

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