Mercurial > code > home > repos > light9
changeset 825:a8942364e4ee
switch from buildout to virtualenv
Ignore-this: 6fce3aea6dc32318f111312e212bd70a
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Tue, 04 Jun 2013 19:31:39 +0000 |
parents | 3d3dc2eaf998 |
children | 05aabe3d7b02 |
files | buildout.cfg makefile pydeps |
diffstat | 3 files changed, 19 insertions(+), 24 deletions(-) [+] |
line wrap: on
line diff
--- a/buildout.cfg Tue Jun 04 19:31:24 2013 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,24 +0,0 @@ -[buildout] -parts = external_libs -bin-directory = bin -download-cache = /tmp/ - - - -[external_libs] -recipe = zc.recipe.egg -eggs = ipython==0.8.4 - web.py==0.36 - cyclone==1.0-rc4 - rdflib==3.2.1 - restkit==4.1.3 - Louie==1.1 - webcolors==1.4 - -python = python -interpreter = python -extra-paths = - -[python] -executable = /usr/bin/python2.7 -
--- a/makefile Tue Jun 04 19:31:24 2013 +0000 +++ b/makefile Tue Jun 04 19:31:39 2013 +0000 @@ -1,2 +1,12 @@ tests: bin/python `which nosetests` --no-path-adjustment light9.rdfdb.rdflibpatch + +install_python_deps: + env/bin/pip install -r pydeps + +PYTHON=/usr/bin/pypy +PYTHON=/usr/bin/python + +create_virtualenv: + mkdir -p env + virtualenv -p $(PYTHON) env
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pydeps Tue Jun 04 19:31:39 2013 +0000 @@ -0,0 +1,9 @@ +#git+git://github.com/RDFLib/rdflib@f5da2a2aca054748877aa7c6d722dc087472a858 +Twisted==13.0.0 +webcolors==1.4 +Louie==1.1 +cyclone==1.1 + +web.py==0.37 +restkit==4.2.1 +ipython==0.13.2 \ No newline at end of file