# HG changeset patch # User Drew Perttula # Date 2013-06-04 19:31:39 # Node ID a8942364e4ee93e4a3fdfdf8c13b15bde3db19a5 # Parent 3d3dc2eaf99889d2b0862c822dcabcb21dad0130 switch from buildout to virtualenv Ignore-this: 6fce3aea6dc32318f111312e212bd70a diff --git a/buildout.cfg b/buildout.cfg deleted file mode 100644 --- a/buildout.cfg +++ /dev/null @@ -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 - diff --git a/makefile b/makefile --- a/makefile +++ b/makefile @@ -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 diff --git a/pydeps b/pydeps new file mode 100644 --- /dev/null +++ b/pydeps @@ -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