Re: Resources/best practices for making a .deb out of a virtualenv

2015-01-07 Thread Hans-Christoph Steiner
I've used python-stdeb to make Debian packages out of standard projects, then you can upload those packages to a PPA like on launchpad.net, and it is also easy to get them into Debian-proper. https://packages.debian.org/python-stdeb Try py2deb or pypi-install from that package. .hc Tim Chase:

Re: Resources/best practices for making a .deb out of a virtualenv

2015-01-02 Thread Tim Chase
On 2014-12-31 15:59, Donald Stufft wrote: > On Dec 31, 2014, at 2:21 PM, Tim Chase wrote: >> Are there any good resources on how to package up a virtualenv for >> distribution so that it can use more recent libraries? > > I’ve used https://github.com/spotify/dh-virtualenv in the past and > it work

Re: Resources/best practices for making a .deb out of a virtualenv

2014-12-31 Thread Donald Stufft
> On Dec 31, 2014, at 2:21 PM, Tim Chase wrote: > > I've got a Python project where the dependencies are > isolated in a virtualenv and would like to package it up as a .deb > the purposes of sharing. Normally I'd include the additional > libraries as straight-forward dependencies of the Debian

Resources/best practices for making a .deb out of a virtualenv

2014-12-31 Thread Tim Chase
I've got a Python project where the dependencies are isolated in a virtualenv and would like to package it up as a .deb the purposes of sharing. Normally I'd include the additional libraries as straight-forward dependencies of the Debian package itself, but some of the required package-versions co