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
864 B

  1. #!/usr/bin/env python
  2. #
  3. # $Id: setup.py,v 1.11 2005/02/15 16:32:22 warnes Exp $
  4. import os
  5. import re
  6. from setuptools import setup, find_packages
  7. __version__ = '0.4'
  8. url = "https://github.com/pycontribs/wstools.git"
  9. def read(*rnames):
  10. return "\n" + open(
  11. os.path.join('.', *rnames)
  12. ).read()
  13. long_description = """WSDL parsing services package for Web Services for Python. see """ + url \
  14. + read('README.txt')\
  15. + read('CHANGES.txt')\
  16. setup(
  17. name="wstools",
  18. version=__version__,
  19. description="wstools",
  20. maintainer="Gregory Warnes, kiorky, sorin",
  21. maintainer_email="Gregory.R.Warnes@Pfizer.com, kiorky@cryptelium.net, sorin.sbarnea@gmail.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. )