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.
 
 
 
 

38 lines
928 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. import os
  6. from setuptools import setup, find_packages
  7. def read(*rnames):
  8. return "\n" + open(
  9. os.path.join('.', *rnames)
  10. ).read()
  11. url = "https://github.com/Synerty/SOAPpy-py3"
  12. long_description = "SOAPpy-py3 provides tools for building SOAP clients and servers. For more information see " + url \
  13. + '\n' + read('README.txt') \
  14. + '\n' + read('CHANGES.txt')
  15. setup(
  16. name="SOAPpy-py3",
  17. version='0.52.23', # Add 0.40.0 for the SOAPpy-py3 port
  18. description="SOAP Services for Python",
  19. maintainer="Synerty",
  20. maintainer_email="contact@synerty.com",
  21. url=url,
  22. long_description=long_description,
  23. packages=find_packages('src'),
  24. package_dir={'': 'src'},
  25. include_package_data=True,
  26. install_requires=[
  27. 'wstools',
  28. 'defusedxml',
  29. ]
  30. )