HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //lib/python3/dist-packages/incremental-16.10.1.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: incremental
Version: 16.10.1
Summary: UNKNOWN
Home-page: https://github.com/hawkowl/incremental
Maintainer: Amber Brown
Maintainer-email: hawkowl@twistedmatrix.com
License: MIT
Description: Incremental
        ===========
        
        |travis|
        |pypi|
        |coverage|
        
        Incremental is a small library that versions your Python projects.
        
        API documentation can be found `here <https://hawkowl.github.io/incremental/docs/>`_.
        
        
        Quick Start
        -----------
        
        Add this to your ``setup.py``\ 's ``setup()`` call:
        
        .. code::
        
           setup(
               use_incremental=True,
               setup_requires=['incremental'],
               install_requires=['incremental'], # along with any other install dependencies
               ...
           }
        
        
        Then in your project add a ``_version.py`` that contains:
        
        .. code::
        
           from incremental import Version
        
           __version__ = Version("widgetbox", 1, 2, 3)
           __all__ = ["__version__"]
        
        
        Then, so users of your project can find your version, in your project's ``__init__.py`` add:
        
        .. code::
        
           from ._version import __version__
        
        
        Subsequent installations of your project will use incremental for versioning.
        
        .. |coverage| image:: https://codecov.io/github/hawkowl/incremental/coverage.svg?branch=master
        .. _coverage: https://codecov.io/github/hawkowl/incremental
        
        .. |travis| image:: https://travis-ci.org/hawkowl/incremental.svg?branch=master
        .. _travis: http://travis-ci.org/hawkowl/incremental
        
        .. |pypi| image:: http://img.shields.io/pypi/v/incremental.svg
        .. _pypi: https://pypi.python.org/pypi/incremental
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Provides-Extra: scripts