From db64b6a2df69cbb9e476507de94d2b8fffdcf3ac Mon Sep 17 00:00:00 2001 From: freestorm <> Date: Thu, 6 Jan 2011 23:58:53 +0000 Subject: [PATCH] add tips to build binary egg for pycrypto [Imported from Trac: page TipsTricks, version 5] --- TipsTricks.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/TipsTricks.md b/TipsTricks.md index eb61d37..a4e74ab 100644 --- a/TipsTricks.md +++ b/TipsTricks.md @@ -22,4 +22,10 @@ Support for Tahoe's FTP server has been merged into Bzr's mainline ([#294709](ht ### Running with supervisord -The only trick with [supervisord](http://supervisord.org) is to make tahoe run as a single foreground process so it can be watched and killed correctly. Use a command like "bin/tahoe run -C /path/to/tahoe/home". \ No newline at end of file +The only trick with [supervisord](http://supervisord.org) is to make tahoe run as a single foreground process so it can be watched and killed correctly. Use a command like "bin/tahoe run -C /path/to/tahoe/home". + +### Creating binary egg for pycrypto + +Juste add this line to setup.py: `from setuptools import setup, Extension` + +and run: `python setup.py bdist_egg` \ No newline at end of file