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.
 
 
 
 

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