This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| """Calculates the current version number. | |
| If possible, uses output of “git describe” modified to conform to the | |
| visioning scheme that setuptools uses (see PEP 386). Releases must be | |
| labelled with annotated tags (signed tags are annotated) of the following | |
| format: | |
| v<num>(.<num>)+ [ {a|b|c|rc} <num> (.<num>)* ] |
This file contains hidden or 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
Show hidden characters
| { | |
| "color_scheme": "Packages/Theme - Flatland/Flatland Dark.tmTheme", | |
| // Gebruik het Flatland kleurenschema voor code. | |
| "ensure_newline_at_eof_on_save": true, | |
| // Maak altijd een newline op het einde van een bestand. | |
| "file_exclude_patterns": | |
| [ | |
| "*.scssc", | |
| "*.DS_Store" | |
| ], |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| # file: ~/.virtualenvs/postmkvirtualenv | |
| # This hook is run after a new virtualenv is activated. | |
| # setup python interpretor and sitepackages | |
| # for Sublime Text's SublimeCodeIntel plugin. | |
| # codeintel looks in the root of any folder opened via `subl foldername` | |
| # for foldername/.codeintel/config | |
| # it also looks in ~/.codeintel/config |
This file contains hidden or 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
| [global] | |
| index-url=http://f.pypi.python.org/simple #I'm mostly in Europe anyways. | |
| default-timeout = 60 | |
| respect-virtualenv = true | |
| download-cache = ~/.pip/cache | |
| log-file = ~/.pip/pip.log | |
| build = ~/.pip/build |