-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
57 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
Installable via pip. | ||
|Documentation Status| |Build Status| |Coverage Status| | ||
|
||
Docs at http://venv_tools.rtfd.org. | ||
venv_tools is a collection of tools for managing python virtual environments. | ||
|
||
.. image:: https://drone.io/bitbucket.org/aragilar/venv_tools/status.png | ||
:target: https://drone.io/bitbucket.org/aragilar/venv_tools/latest | ||
The advantages of venv_tools are: | ||
|
||
* Almost no dependencies | ||
* Simple | ||
* Extensible | ||
|
||
.. |Documentation Status| image:: https://readthedocs.org/projects/venv_tools/badge/?version=latest | ||
:target: http://venv_tools.readthedocs.org/en/latest/?badge=latest | ||
.. |Build Status| image:: https://travis-ci.org/aragilar/venv_tools.svg?branch=master | ||
:target: https://travis-ci.org/aragilar/venv_tools | ||
.. |Coverage Status| image:: https://codecov.io/github/aragilar/venv_tools/coverage.svg?branch=master | ||
:target: https://codecov.io/github/aragilar/venv_tools?branch=master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,13 +5,11 @@ | |
with open('README.rst') as f: | ||
long_description = f.read() | ||
|
||
deps = ["requests", "virtualenv"] | ||
|
||
setuptools.setup( | ||
name="venv_tools", | ||
version = versioneer.get_version(), | ||
packages = setuptools.find_packages(), | ||
install_requires = deps, | ||
install_requires = ["virtualenv"], | ||
author = "James Tocknell", | ||
author_email = "[email protected]", | ||
description = "A bunch of tools for using venvs (and virtualenvs) from python.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters