A fork of https://github.com/Synerty/SOAPpy-py3 This is a working tree till fixes get imported upstream.
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.
 
 
 
 

30 lines
702 B

  1. #!/usr/bin/env python
  2. #
  3. # $Id: setup.py,v 1.11 2005/02/15 16:32:22 warnes Exp $
  4. CVS=0
  5. from distutils.core import setup, Command, Extension
  6. from SOAPpy.version import __version__
  7. url="http://pywebsvcs.sf.net/"
  8. long_description="SOAPpy provides tools for building SOAP clients and servers. For more information see " + url
  9. if CVS:
  10. import time
  11. __version__ += "_CVS_" + time.strftime('%Y_%m_%d')
  12. setup(name="SOAPpy",
  13. version=__version__,
  14. description="SOAP Services for Python",
  15. maintainer="Gregory Warnes",
  16. maintainer_email="Gregory.R.Warnes@Pfizer.com",
  17. url = url,
  18. long_description=long_description,
  19. packages=['SOAPpy','SOAPpy/wstools']
  20. )