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.
 
 
 

27 lines
647 B

  1. #!/usr/bin/env python
  2. #
  3. # $Id: setup.py,v 1.11 2005/02/15 16:32:22 warnes Exp $
  4. from setuptools import setup, find_packages
  5. __version__ = '0.1'
  6. url="http://pywebsvcs.sf.net/"
  7. long_description="""WSDL parsing services package for Web Services for Python. see """ + url
  8. setup(
  9. name="wstools",
  10. version=__version__,
  11. description="wstools",
  12. maintainer="Gregory Warnes, kiorky",
  13. maintainer_email="Gregory.R.Warnes@Pfizer.com, kiorky@cryptelium.net",
  14. url = url,
  15. long_description=long_description,
  16. packages=find_packages('src'),
  17. package_dir = {'': 'src'},
  18. include_package_data=True,
  19. install_requires=[]
  20. )