Metadata-Version: 2.1
Name: git-open
Version: 1.0.5
Summary: Open a git repo in the browser from the terminal.
Home-page: https://github.com/cfp2000/git-open
Author: 
Author-email: cfp@highball.se
Maintainer: 
Maintainer-email: cfp@highball.se
License: GPLv3
Project-URL: Bug Tracker, https://github.com/cfp2000/git-open/issues
Project-URL: Source Code, https://github.com/cfp2000/git-open
Keywords: terminal,git,web
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
Requires-Dist: Click (>=6.7)
Requires-Dist: sh (>=1.12.14)
Requires-Dist: six (>=1.11.0)
Provides-Extra: dev
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: coverage; extra == 'dev'
Requires-Dist: flake8; extra == 'dev'
Requires-Dist: six; extra == 'dev'
Requires-Dist: sphinx; extra == 'dev'
Requires-Dist: pre-commit; extra == 'dev'
Provides-Extra: docs
Requires-Dist: sphinx; extra == 'docs'
Provides-Extra: setup
Requires-Dist: wheel; extra == 'setup'
Provides-Extra: tests
Requires-Dist: pytest; extra == 'tests'
Requires-Dist: coverage; extra == 'tests'
Requires-Dist: flake8; extra == 'tests'
Requires-Dist: six; extra == 'tests'

git-open
========

[![CI Status](https://travis-ci.org/cfp2000/git-open.svg?branch=master)](https://travis-ci.org/cfp2000/git-open)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
[![codecov](https://codecov.io/gh/cfp2000/git-open/branch/master/graph/badge.svg)](https://codecov.io/gh/cfp2000/git-open)
[![Maintainability](https://api.codeclimate.com/v1/badges/09be50f0293cfed0e89a/maintainability)](https://codeclimate.com/github/cfp2000/git-open/maintainability)
[![Known Vulnerabilities](https://snyk.io/test/github/cfp2000/git-open/badge.svg?targetFile=requirements.txt)](https://snyk.io/test/github/cfp2000/git-open?targetFile=requirements.txt)
[![Downloads](http://pepy.tech/badge/git-open)](http://pepy.tech/project/git-open)

Open a git repo in the browser from the terminal.

Features
--------

From the terminal type the following command to open the current repository in your browser.

```
git open
```

or

```
git-open
```

Installation
------------

### Using pip

    pip install git-open

### Using pipsi (recommended)

[pipsi](https://github.com/mitsuhiko/pipsi) is a great tool to install python tools globally.

> pipsi makes installing python packages with global entry points painless. 
> These are Python packages that expose an entry point through the command line such as Pygments.

    pipsi install git-open

Credits
-------

This package was initially created with [Cookiecutter](https://github.com/audreyr/cookiecutter) and the 
[audreyr/cookiecutter-pypackage](https://github.com/audreyr/cookiecutter-pypackage) project template.



License
-------

GNU General Public License v3.0

See [LICENSE](LICENSE) to see the full text.


Changelog
=========

**unreleased**

v1.0.5
-----
- Deploy to pypi from travis

v1.0.4
-----
- Add a download badge from http://pepy.tech/project/git-open to the readme
- Add a test that will ensure that the dependencies will be checked by snyk.io
  when versions are bumped by dependabot
- Fixes an [issue](https://github.com/cfp2000/git-open/issues/23) with opening public repositories

v1.0.3
-----
- Fix the build

v1.0.2
-----
- Fix the manifest.in

v1.0.1
-----
- Add a vulnerabilities checking to the CI pipeline (snyk.io)

v1.0.0
-----
- Add the package to pypi
- Update the install readme

v0.0.3
-----
- Updated ci pipeline 

v0.0.2
-----
- Update the install description

v0.0.1
-----
* Implemented tox testing
* Created


