Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 921 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 921 Bytes

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:

$ 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:

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:

$ 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.