Skip to content

Commit

Permalink
Add bootstrap script
Browse files Browse the repository at this point in the history
  • Loading branch information
takluyver committed Mar 28, 2015
1 parent a3d78ec commit b3c0e9a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions bootstrap_dev.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
"""Use this script to get set up for working on flit itself.
python bootstrap_dev.py
This symlinks flit into site-packages, and installs the flit command.
"""

from flit import Importable
from flit.install import Installer

i = Importable('flit')
i.check()
Installer(i, symlink=True).install()

0 comments on commit b3c0e9a

Please sign in to comment.