Metadata-Version: 2.1
Name: crc-ct
Version: 1.1.0rc1
Summary: C and Python CRC calculations module.
Home-page: https://pypi.org/project/crc-ct/
Author: Adam Karpierz
Author-email: adam@karpierz.net
Maintainer: Adam Karpierz
Maintainer-email: adam@karpierz.net
License: zlib/libpng License ; https://opensource.org/licenses/Zlib
Download-URL: https://pypi.org/project/crc-ct/
Project-URL: Documentation, https://crc-ct.readthedocs.io/
Project-URL: Source, https://github.com/karpierz/crc-ct/
Description: crc-ct
        ======
        
        C and Python (ctypes/cffi-based) CRC calculations module.
        
        Overview
        ========
        
        TBD...
        
        `PyPI record`_.
        
        Installation
        ============
        
        Prerequisites:
        
        + Python 3.6 or higher
        
          * https://www.python.org/
          * 3.7 is a primary test environment.
        
        + pip and setuptools
        
          * https://pypi.org/project/pip/
          * https://pypi.org/project/setuptools/
        
        To install run:
        
          .. parsed-literal::
        
            python -m pip install --upgrade |package|
        
        Development
        ===========
        
        Prerequisites:
        
        + Development is strictly based on *tox*. To install it run::
        
            python -m pip install --upgrade tox
        
        Visit `development page`_.
        
        Installation from sources:
        
        clone the sources:
        
          .. parsed-literal::
        
            git clone |respository| |package|
        
        and run:
        
          .. parsed-literal::
        
            python -m pip install ./|package|
        
        or on development mode:
        
          .. parsed-literal::
        
            python -m pip install --editable ./|package|
        
        License
        =======
        
          | Copyright (c) 1994-2020 Adam Karpierz
          | Licensed under the zlib/libpng License
          | https://opensource.org/licenses/Zlib
          | Please refer to the accompanying LICENSE file.
        
        Authors
        =======
        
        * Adam Karpierz <adam@karpierz.net>
        
        .. |package| replace:: crc-ct
        .. |package_bold| replace:: **crc-ct**
        .. |respository| replace:: https://github.com/karpierz/crc-ct.git
        .. _development page: https://github.com/karpierz/crc-ct/
        .. _PyPI record: https://pypi.org/project/crc-ct/
        
        Changelog
        =========
        
        1.1.0rc1 (2020-09-30)
        ---------------------
        - Add support for Python 3.9.
        - Drop support for Python 3.5.
        - General update and cleanup.
        
        1.0.0rc9 (2020-01-16)
        ---------------------
        - Fix for missing include stddef.h (for size_t) in crc.h
        - Another fixes for gcc/Linux.
        - Added ReadTheDocs config file.
        - Setup update.
        
        1.0.0rc6 (2019-11-13)
        ---------------------
        - Drop support for Python2.
        - Add support for Python 3.8.
        - Setup update and cleanup.
        
        1.0.0rc2 (2019-05-19)
        ---------------------
        - Changes and fixes for support of Python2.
        
        1.0.0rc1 (2019-05-18)
        ---------------------
        - C API has been changed in one place: crc_finalize() -> crc_final().
        - Python API has been changed. It is now finally established in the
          folowing way; crc.name instead of crc.crc_name in most of cases.
        - Python doc-strings update.
        - Fix for error in Python definition of crc.predefined_models.
        - Python tests have been improved, enhanced and fixed.
        - Minor setup improvement.
        
        1.0.0b2 (2019-05-13)
        --------------------
        - Python tests have been added.
        - Minor setup improvements.
        
        1.0.0b1 (2019-05-12)
        --------------------
        - Firt beta release.
        
        0.0.1 (2017-05-09)
        ------------------
        - Initial release for Python.
        
Keywords: crc-ct,crc
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: zlib/libpng License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: Polish
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: Stackless
Classifier: Programming Language :: C
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: <4.0.0,>=3.6.0
Description-Content-Type: text/x-rst; charset=UTF-8
Provides-Extra: doc
Provides-Extra: test
