deluge/setup.py
Zach Tibbitts 1020cdbca8 move
2006-11-29 23:41:58 +00:00

18 lines
438 B
Python

#
# setup.py
#
from distutils.core import setup, Extension
setup(name="Deluge", fullname="Deluge Bittorrent Client", version="0.5.0",
author="Zach Tibbitts",
description="A bittorrent client written in PyGTK",
url="http://deluge-torrent.org",
license="GPLv2",
scripts=["scripts/deluge-gtk", "scripts/deluge-tools"],
py_modules=["dcommon", "deluge", "delugegtk", "dexml"],
data_files=[("glade", ["glade/delugegtk.glade"])]
)