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.
 
 
 
 

45 lines
1.3 KiB

  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. package_version = '0.52.25'
  8. url = "https://github.com/Synerty/SOAPpy-py3"
  9. long_description = "SOAPpy-py3 provides tools for building SOAP clients and servers. For more information see " + url
  10. setup(
  11. name="SOAPpy-py3",
  12. provides=['SOAPpy'],
  13. version=package_version, # Add 0.40.0 for the SOAPpy-py3 port
  14. description="SOAP Services for Python",
  15. maintainer="Synerty",
  16. maintainer_email="contact@synerty.com",
  17. url=url,
  18. long_description=long_description,
  19. packages=find_packages('src'),
  20. package_dir={'': 'src'},
  21. include_package_data=True,
  22. install_requires=[
  23. 'wstools-py3',
  24. 'defusedxml',
  25. ],
  26. classifiers=[
  27. 'Programming Language :: Python',
  28. 'Programming Language :: Python :: 3',
  29. 'Development Status :: 5 - Production/Stable',
  30. 'Environment :: Other Environment',
  31. 'Intended Audience :: Developers',
  32. 'Operating System :: OS Independent',
  33. 'Topic :: Software Development :: Libraries :: Python Modules',
  34. 'Programming Language :: Python :: 3.4',
  35. 'Programming Language :: Python :: 3.5',
  36. 'Topic :: Internet :: WWW/HTTP',
  37. ]
  38. )