How to use the pyprind.__version__ function in PyPrind

To help you get started, we’ve selected a few PyPrind examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github rasbt / pyprind / setup.py View on Github external
Sebastian Raschka 2014-2016
Python Progress Indicator Utility

Author: Sebastian Raschka 
License: BSD 3 clause

Contributors: https://github.com/rasbt/pyprind/graphs/contributors
Code Repository: https://github.com/rasbt/pyprind
PyPI: https://pypi.python.org/pypi/PyPrind
"""


from setuptools import setup, find_packages
import pyprind

VERSION = pyprind.__version__

setup(name='PyPrind',
      version=VERSION,
      description='Python Progress Bar and Percent Indicator Utility',
      author='Sebastian Raschka',
      author_email='mail@sebastianraschka.com',
      url='https://github.com/rasbt/pyprind',
      packages=find_packages(),
      package_data={'': ['LICENSE',
                         'README.md',
                         'requirements.txt',
                         'CHANGELOG.md',
                         'CONTRIBUTING.md'],
                    'tests': ['tests/test_percentage_indicator.py',
                              'tests/test_progress_bar.py']},
      include_package_data=True,