

I don't have a clue about coding and such, but I think I did try an attempt with py2app once (although, I had no idea of what I was doing...waeking wrote:What are the packages that need to be installed before deluge? I am so wanting to make this work natively on the mac. Been keeping up with the updates and Hardy for a few years now, and loviin' it!
so I suppose these are the packages needed if trying a Mac OS X attempt.Along with the following packages, you will also need to install the appropriate build tools provided by your OS.
Core
python >= 2.5
twisted >= 8.1
twisted-web >= 8.1
pyopenssl
simplejson (if python < 2.6)
setuptools
gettext
pyxdg
geoip-database (optional)
libtorrent >= 0.14, or build the included version
If building included libtorrent::
boost >= 1.34.1
openssl
zlib
UIs
chardet
Gtk
python-notify (libnotify python wrapper)
pygame
pygtk >= 2.12
librsvg
xdg-utils
Web
mako
Code: Select all
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
setup(
app=["MyApplication.py"],
setup_requires=["py2app"],
)