Skip to content

Instantly share code, notes, and snippets.

@notmii
Last active August 29, 2015 14:01
Show Gist options
  • Save notmii/3c8ff3169032fe319720 to your computer and use it in GitHub Desktop.
Save notmii/3c8ff3169032fe319720 to your computer and use it in GitHub Desktop.
Generate python project skeleton
mkdir sample docs tests requirements
touch README.rst LICENSE setup.py
touch sample/__init__.py sample/core.py sample/helpers.py
touch docs/index.rst docs/conf.py
touch tests/test_basic.py tests/test_advanced.py
touch requirements/production.txt requirements/development.txt requirements/staging.txt
ln -s requirements/development.txt requirements.txt
virtualenv venv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment