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.
 
 
 

37 lines
943 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. url = "https://github.com/pycontribs/wstools.git"
  8. def read(*rnames):
  9. return "\n" + open(
  10. os.path.join('.', *rnames)
  11. ).read()
  12. long_description = """WSDL parsing services package for Web Services for Python. see """ + url \
  13. + read('README.txt')\
  14. + read('CHANGES.txt')\
  15. from src.wstools.version import __version__
  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+os@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=['utils'],
  28. tests_require=['pytest', 'tox', 'utils'],
  29. )