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