Metadata-Version: 1.0
Name: odintools
Version: 0.2.3
Summary: Odin setuptools extensions
Home-page: http://aps.odin.com
Author: apsliteteam
Author-email: aps@odin.com
License: Other/Proprietary License
Description: odintools - Odin Setup Tools
        ============================
        
        This library helps to automate continuous delivery processes adopted in Odin.
        More information: [Python packaging][python-packaging]
        
        
        ## Installation
        
        Current version is at an early stage of development, so you may want to
        install it in the `develop` mode in your virtualenv:
        
        ```bash
        $ python setup.py develop
        ```
        
        
        ## Usage
        
        Ensure that you have `odintools` in your `setup_requires` list and pass
        `odintools=True` as a keyword argument in the `setup()` call:
        
        ```python
        from setuptools import setup
        
        setup(
            setup_requires=['odintools'],
            odintools=True,
            ...
        )
        ```
        
        After you enable odintools in the setup.py file you can use new commands
        provided by it:
        
        ```bash
        $ python setup.py publish --dev
        ```
        
        
        Pydistutils is required because `setup_requires` line in `setup()` call is processed
        by setuptools, not pip, so it needs a separate configuration.
        
Keywords: setup,distutils
Platform: UNKNOWN
Classifier: License :: Other/Proprietary 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.4
Classifier: Programming Language :: Python :: 3.5
