Metadata-Version: 2.0
Name: lancet
Version: 0.4
Summary: Lancet
Home-page: https://github.com/GaretJax/lancet
Author: Jonathan Stoppani
Author-email: jonathan@stoppani.name
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: cffi (==0.8.6)
Requires-Dist: click (==3.3)
Requires-Dist: gnureadline (==6.3.3)
Requires-Dist: ipython (==2.3.1)
Requires-Dist: jira (==0.32)
Requires-Dist: keyring (==4.0)
Requires-Dist: oauthlib (==0.7.2)
Requires-Dist: pycparser (==2.10)
Requires-Dist: pygit2 (==0.21.4)
Requires-Dist: python-slugify (==1.0.0)
Requires-Dist: requests-oauthlib (==0.4.2)
Requires-Dist: requests (==2.5.1)
Requires-Dist: six (==1.8.0)
Requires-Dist: tlslite (==0.4.8)
Requires-Dist: Unidecode (==0.04.17)

======
LANCET
======

.. image:: https://badge.fury.io/py/lancet.png
   :target: http://badge.fury.io/py/lancet

.. image:: https://pypip.in/d/lancet/badge.png
   :target: https://crate.io/packages/lancet?version=latest

.. image:: https://travis-ci.org/GaretJax/lancet.png?branch=master
   :target: https://travis-ci.org/GaretJax/lancet

.. image:: https://readthedocs.org/projects/lancet/badge/?version=latest
   :target: http://lancet.readthedocs.org/en/latest/

.. image:: https://requires.io/github/GaretJax/lancet/requirements.svg?branch=master
   :target: https://requires.io/github/GaretJax/lancet/requirements/?branch=master
   :alt: Requirements Status

>From http://en.wikipedia.org/wiki/Scalpel:

    A scalpel, or lancet, is a small and extremely sharp bladed instrument used
    for surgery, anatomical dissection, and various arts and crafts (called a
    hobby knife).

Lancet is a command line utility to streamline the various activities related
to the development and maintenance of a software package.

* Free software: MIT license
* Documentation: http://lancet.rtfd.org


Installation
============

Check out the documentation_.

.. _documentation: http://lancet.readthedocs.org/en/latest/installation/


Getting started
===============

Once installed, set up the initial configuration by running::

   lancet setup

TODO: For each not-yet-configured project, you can then run::

   cd path/to/project
   lancet init

This creates a new project-level configuration file that can be shared across
different users (and thus commited to source control).


TODO
====

A lot of commands are still missing, as for example:

* ``init``: to setup the project-level configuration for any given project.
* ``pr``: to open a new pull-request and update the tracker accordingly.
* ``review``: to streamline the whole reviewing process (pulling, linting,\
  diffs,...).
* ``merge``: to help in getting a more strict merge process in place (and
  cleanup afterwards). Can include rebasing helpers.
* Other issue tracker/Harvest interaction utilities (``list``, ``search``,
  ``comment``, ...)


=======
History
=======


0.4 - 2015-01-05
================

.. warning::

   If your setup includes remote configured to be accessed over SSH, you may
   need to reinstall ``libgit2`` with ``brew reinstall libgit2 --with-libssh2``.

* Added facilities to integrate with the current shell, for stuff like cd'ing
  to other directories or activating virtual environments.
* Added a ``--version`` option to ``lancet``.
* Fetch latest changes from origin before creating new working branches (#1).
* Added an ``activate`` command to ``cd`` to the project directory and
  (optionally) activate a virtual environment.
* Added the ``harvest-projects`` and ``harvest-tasks`` commands to list
  projects/tasks IDs from Harvest.
* Added an ``init`` command to create project-level configuration files (#2).


0.3 - 2014-12-30
================

* Handle unassigned issues (#5).
* Avoid logging out the web user when accessign the JIRA API (#4).
* Initial documentation stub (#3).


