The easy way to contribute to python packages
Project description
Superwrap in an extension to virtualenvwrapper that makes it easier to contribute to a python package for the first time.
Here is the current workflow for starting to contribute to a new project for people that use virtualenvwrapper:
$ mkvirtualenv requests ... (requests)$ ~/Development (requests)$ git clone git@github.com:kennethreitz/requests.git ... (requests)$ cd requests (requests)$ python setup.py develop
And then start working. After setting up Superwrap, it becomes this:
$ workon requests Setup kennethreitz:requests repo for development activated (requests)$ echo "There is no step 2!"
Anytime you use workon with a repo that you don’t already have setup, it will create a new virtualenv, find and clone the repo from github into a new directory, change to that directory, and run python setup.py develop. If you use workon with a virtualenv that has been previously setup, it will work the exact same.
Installation
First, have virtualenvwrapper configured.
Configure where you want new repos to go by setting the SUPERWRAP_DIR evnrionment variable. It will default to ~/Development.
(Optional) Configure GITHUB_OAUTH_TOKEN if you want to create a fork of every repo to clone instead of cloning the repo itself.
$ pip install superwrap
Add the following to $WORKON_HOME/postactivate
#!/bin/bash proj_name=$(echo $VIRTUAL_ENV|awk -F'/' '{print $NF}') cd $SUPERWRAP_DIR/$proj_name
Note that this will create issues if your current setup does not consist of virtualenvs and directories with matching names.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file superwrap-0.0.3.tar.gz
.
File metadata
- Download URL: superwrap-0.0.3.tar.gz
- Upload date:
- Size: 2.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8031d24ea8332a3130c962dbeb727ccd9a6394780e54a19307c5dfdd25984b79 |
|
MD5 | 171a4a1ec93a19d9db864c689b404a70 |
|
BLAKE2b-256 | da4aca487085986f4082589731223a94f4c131a68bea9fc6958e68ef2e6ffe88 |