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
887 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 setuptools import setup, find_packages
  6. import os
  7. def read(*rnames):
  8. return "\n"+ open(
  9. os.path.join('.', *rnames)
  10. ).read()
  11. url="https://github.com/kiorky/SOAPpy.git"
  12. long_description="SOAPpy 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",
  17. version='0.12.20dev0',
  18. description="SOAP Services for Python",
  19. maintainer="Gregory Warnes, kiorky",
  20. maintainer_email="Gregory.R.Warnes@Pfizer.com, kiorky@cryptelium.net",
  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. )