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.
 
 
 

35 lines
886 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. setup(
  15. name="wstools",
  16. version=__version__,
  17. description="wstools",
  18. maintainer="Gregory Warnes, kiorky, sorin",
  19. maintainer_email="Gregory.R.Warnes@Pfizer.com, kiorky@cryptelium.net, sorin.sbarnea+os@gmail.com",
  20. url=url,
  21. long_description=long_description,
  22. packages=find_packages('src'),
  23. package_dir={'': 'src'},
  24. include_package_data=True,
  25. install_requires=['docutils'],
  26. tests_require=['virtualenv', 'pytest'],
  27. )