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.
 
 
 
 

35 lines
753 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(
  13. name="SOAPpy",
  14. version=__version__,
  15. description="SOAP Services for Python",
  16. maintainer="Gregory Warnes",
  17. maintainer_email="Gregory.R.Warnes@Pfizer.com",
  18. url = url,
  19. long_description=long_description,
  20. packages=['SOAPpy','SOAPpy/wstools'],
  21. install_requires=[
  22. 'fpconst',
  23. 'pyxml'
  24. ]
  25. )