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.
 
 
 

43 lines
941 B

  1. #!/usr/bin/env python
  2. import os
  3. import re
  4. from setuptools import setup, find_packages
  5. url = "https://github.com/pycontribs/wstools.git"
  6. def read(*rnames):
  7. return "\n" + open(
  8. os.path.join('.', *rnames)
  9. ).read()
  10. long_description = """WSDL parsing services package for Web Services for Python. see """ + url \
  11. + read('README.txt')\
  12. + read('CHANGES.txt')\
  13. from src.wstools.version import __version__
  14. install_requires = [
  15. 'docutils'
  16. ]
  17. test_requires = [
  18. 'nose'
  19. ]
  20. setup(
  21. name="wstools",
  22. version=__version__,
  23. description="wstools",
  24. maintainer="Gregory Warnes, kiorky, sorin",
  25. maintainer_email="Gregory.R.Warnes@Pfizer.com, kiorky@cryptelium.net, sorin.sbarnea+os@gmail.com",
  26. url=url,
  27. long_description=long_description,
  28. packages=['wstools'],
  29. package_dir={'': 'src'},
  30. include_package_data=True,
  31. install_requires=install_requires,
  32. tests_require=test_requires,
  33. )