collection of python libs developed for testing purposes

setup.py 374B

123456789101112
  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. setup(name='sznqalibs',
  4. version='0.1.0',
  5. description='collection of python libs developed for testing purposes',
  6. author='Seznam.cz, a.s.',
  7. author_email='opensource@firma.seznam.cz',
  8. url='https://github.com/seznam/szn-qalibs',
  9. packages=['sznqalibs', ],
  10. test_suite="tests",
  11. )