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.
 
 
 
 

51 lines
1.4 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. 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. provides=['SOAPpy'],
  18. version='0.52.23', # Add 0.40.0 for the SOAPpy-py3 port
  19. description="SOAP Services for Python",
  20. maintainer="Synerty",
  21. maintainer_email="contact@synerty.com",
  22. url=url,
  23. long_description=long_description,
  24. packages=find_packages('src'),
  25. package_dir={'': 'src'},
  26. include_package_data=True,
  27. install_requires=[
  28. 'wstools-py3',
  29. 'defusedxml',
  30. ],
  31. classifiers=[
  32. 'Programming Language :: Python',
  33. 'Programming Language :: Python :: 3',
  34. 'Development Status :: 5 - Production/Stable',
  35. 'Environment :: Other Environment',
  36. 'Intended Audience :: Developers',
  37. 'Operating System :: OS Independent',
  38. 'Topic :: Software Development :: Libraries :: Python Modules',
  39. 'Programming Language :: Python :: 3.4',
  40. 'Programming Language :: Python :: 3.5',
  41. 'Topic :: Internet :: WWW/HTTP',
  42. ]
  43. )