2011-05-21 12:00:59 +00:00
|
|
|
#!/usr/bin/env python
|
2008-11-23 04:58:01 +00:00
|
|
|
#
|
2007-07-04 08:24:30 +00:00
|
|
|
# setup.py
|
|
|
|
#
|
2008-11-23 04:58:01 +00:00
|
|
|
# Copyright (C) 2007 Andrew Resch <andrewresch@gmail.com>
|
2009-11-25 17:58:50 +00:00
|
|
|
# 2009 Damien Churchill <damoxc@gmail.com>
|
2007-07-04 08:24:30 +00:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2008-08-08 05:59:07 +00:00
|
|
|
# the Free Software Foundation; either version 3, or (at your option)
|
2007-07-04 08:24:30 +00:00
|
|
|
# any later version.
|
2008-07-14 20:42:11 +00:00
|
|
|
#
|
2007-07-04 08:24:30 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2007-07-13 01:34:18 +00:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2007-07-04 08:24:30 +00:00
|
|
|
# GNU General Public License for more details.
|
2008-07-14 20:42:11 +00:00
|
|
|
#
|
2007-07-04 08:24:30 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-07-13 01:34:18 +00:00
|
|
|
# along with this program. If not, write to:
|
2012-01-09 19:58:37 +00:00
|
|
|
# The Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor
|
|
|
|
# Boston, MA 02110-1301, USA.
|
2007-07-04 08:24:30 +00:00
|
|
|
#
|
|
|
|
|
2014-09-03 23:27:11 +00:00
|
|
|
import glob
|
2012-11-14 12:27:41 +00:00
|
|
|
import os
|
|
|
|
import platform
|
2014-09-03 23:27:11 +00:00
|
|
|
import sys
|
2014-09-03 21:28:28 +00:00
|
|
|
from distutils import cmd
|
2007-09-16 01:24:08 +00:00
|
|
|
from distutils.command.build import build as _build
|
2008-11-25 22:21:14 +00:00
|
|
|
from distutils.command.clean import clean as _clean
|
2013-05-06 06:34:26 +00:00
|
|
|
|
2014-09-03 23:27:11 +00:00
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
|
|
|
import msgfmt
|
|
|
|
from version import get_version
|
|
|
|
|
2009-07-22 23:52:18 +00:00
|
|
|
try:
|
|
|
|
from sphinx.setup_command import BuildDoc
|
|
|
|
except ImportError:
|
|
|
|
class BuildDoc(object):
|
|
|
|
pass
|
|
|
|
|
2013-05-06 06:34:26 +00:00
|
|
|
|
2008-02-03 01:04:26 +00:00
|
|
|
def windows_check():
|
2008-10-23 11:27:37 +00:00
|
|
|
return platform.system() in ('Windows', 'Microsoft')
|
2008-02-03 01:04:26 +00:00
|
|
|
|
2012-02-20 16:56:20 +00:00
|
|
|
desktop_data = 'deluge/ui/data/share/applications/deluge.desktop'
|
|
|
|
|
2014-09-03 21:28:28 +00:00
|
|
|
|
2014-09-19 18:10:09 +00:00
|
|
|
class BuildTranslations(cmd.Command):
|
2012-01-02 16:53:28 +00:00
|
|
|
description = 'Compile .po files into .mo files & create .desktop file'
|
2007-09-16 01:24:08 +00:00
|
|
|
|
2008-11-29 01:22:29 +00:00
|
|
|
user_options = [
|
2014-09-03 21:28:28 +00:00
|
|
|
('build-lib', None, "lib build folder"),
|
|
|
|
('develop', 'D', 'Compile translations in develop mode (deluge/i18n)')
|
2008-11-29 01:22:29 +00:00
|
|
|
]
|
2013-05-06 06:34:26 +00:00
|
|
|
boolean_options = ['develop']
|
2008-11-29 01:22:29 +00:00
|
|
|
|
2007-09-16 01:24:08 +00:00
|
|
|
def initialize_options(self):
|
2008-11-29 01:22:29 +00:00
|
|
|
self.build_lib = None
|
2013-05-06 06:34:26 +00:00
|
|
|
self.develop = False
|
2007-09-16 01:24:08 +00:00
|
|
|
|
|
|
|
def finalize_options(self):
|
2008-11-29 01:22:29 +00:00
|
|
|
self.set_undefined_options('build', ('build_lib', 'build_lib'))
|
2007-09-16 01:24:08 +00:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
po_dir = os.path.join(os.path.dirname(__file__), 'deluge/i18n/')
|
2011-07-13 20:49:25 +00:00
|
|
|
|
2013-05-06 06:34:26 +00:00
|
|
|
if self.develop:
|
2011-07-10 00:20:13 +00:00
|
|
|
basedir = po_dir
|
|
|
|
else:
|
|
|
|
basedir = os.path.join(self.build_lib, 'deluge', 'i18n')
|
2011-07-13 20:49:25 +00:00
|
|
|
|
2011-07-22 18:12:47 +00:00
|
|
|
if not windows_check():
|
|
|
|
# creates the translated desktop file
|
2014-09-03 21:28:28 +00:00
|
|
|
intltool_merge = 'intltool-merge'
|
|
|
|
intltool_merge_opts = '--utf8 --quiet --desktop-style'
|
|
|
|
desktop_in = 'deluge/ui/data/share/applications/deluge.desktop.in'
|
2011-07-22 18:12:47 +00:00
|
|
|
print('Creating desktop file: %s' % desktop_data)
|
2014-09-03 21:28:28 +00:00
|
|
|
os.system('C_ALL=C ' + '%s ' * 5 % (intltool_merge, intltool_merge_opts,
|
|
|
|
po_dir, desktop_in, desktop_data))
|
2011-07-13 20:49:25 +00:00
|
|
|
|
|
|
|
print('Compiling po files from %s...' % po_dir),
|
2007-09-16 01:24:08 +00:00
|
|
|
for path, names, filenames in os.walk(po_dir):
|
|
|
|
for f in filenames:
|
2014-09-03 21:28:28 +00:00
|
|
|
upto_date = False
|
2007-09-16 01:24:08 +00:00
|
|
|
if f.endswith('.po'):
|
|
|
|
lang = f[:len(f) - 3]
|
|
|
|
src = os.path.join(path, f)
|
2011-07-10 00:20:13 +00:00
|
|
|
dest_path = os.path.join(basedir, lang, 'LC_MESSAGES')
|
2007-09-16 01:24:08 +00:00
|
|
|
dest = os.path.join(dest_path, 'deluge.mo')
|
|
|
|
if not os.path.exists(dest_path):
|
|
|
|
os.makedirs(dest_path)
|
|
|
|
if not os.path.exists(dest):
|
2011-07-13 20:49:25 +00:00
|
|
|
sys.stdout.write('%s, ' % lang)
|
|
|
|
sys.stdout.flush()
|
2007-09-16 01:24:08 +00:00
|
|
|
msgfmt.make(src, dest)
|
|
|
|
else:
|
|
|
|
src_mtime = os.stat(src)[8]
|
|
|
|
dest_mtime = os.stat(dest)[8]
|
|
|
|
if src_mtime > dest_mtime:
|
2011-07-13 20:49:25 +00:00
|
|
|
sys.stdout.write('%s, ' % lang)
|
|
|
|
sys.stdout.flush()
|
2007-09-16 01:24:08 +00:00
|
|
|
msgfmt.make(src, dest)
|
2011-07-13 20:49:25 +00:00
|
|
|
else:
|
2014-09-03 21:28:28 +00:00
|
|
|
upto_date = True
|
2011-07-22 18:12:47 +00:00
|
|
|
|
2014-09-03 21:28:28 +00:00
|
|
|
if upto_date:
|
2011-07-13 20:49:25 +00:00
|
|
|
sys.stdout.write(' po files already upto date. ')
|
|
|
|
sys.stdout.write('\b\b \nFinished compiling translation files. \n')
|
2007-09-16 01:24:08 +00:00
|
|
|
|
2013-05-06 06:34:26 +00:00
|
|
|
|
2014-09-19 18:10:09 +00:00
|
|
|
class BuildPlugins(cmd.Command):
|
2008-11-23 05:57:35 +00:00
|
|
|
description = "Build plugins into .eggs"
|
|
|
|
|
2013-05-06 06:34:26 +00:00
|
|
|
user_options = [
|
2014-09-03 21:28:28 +00:00
|
|
|
('install-dir=', None, "develop install folder"),
|
|
|
|
('develop', 'D', 'Compile plugins in develop mode')
|
2013-05-06 06:34:26 +00:00
|
|
|
]
|
|
|
|
boolean_options = ['develop']
|
2011-06-05 15:58:27 +00:00
|
|
|
|
|
|
|
def initialize_options(self):
|
2013-05-06 06:34:26 +00:00
|
|
|
self.install_dir = None
|
|
|
|
self.develop = False
|
2011-06-05 15:58:27 +00:00
|
|
|
|
|
|
|
def finalize_options(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
# Build the plugin eggs
|
2014-09-03 21:28:28 +00:00
|
|
|
plugin_path = "deluge/plugins/*"
|
2011-06-05 15:58:27 +00:00
|
|
|
|
2014-09-03 21:28:28 +00:00
|
|
|
for path in glob.glob(plugin_path):
|
2011-06-05 15:58:27 +00:00
|
|
|
if os.path.exists(os.path.join(path, "setup.py")):
|
2013-05-06 06:34:26 +00:00
|
|
|
if self.develop and self.install_dir:
|
2014-09-03 21:28:28 +00:00
|
|
|
os.system("cd " + path + "&& " + sys.executable +
|
|
|
|
" setup.py develop --install-dir=%s" % self.install_dir)
|
2013-05-06 06:34:26 +00:00
|
|
|
elif self.develop:
|
|
|
|
os.system("cd " + path + "&& " + sys.executable + " setup.py develop")
|
|
|
|
else:
|
|
|
|
os.system("cd " + path + "&& " + sys.executable + " setup.py bdist_egg -d ..")
|
2011-06-05 15:58:27 +00:00
|
|
|
|
|
|
|
|
2014-09-19 18:10:09 +00:00
|
|
|
class EggInfoPlugins(cmd.Command):
|
2011-06-05 15:58:27 +00:00
|
|
|
description = "create a distribution's .egg-info directory"
|
|
|
|
|
|
|
|
user_options = []
|
|
|
|
|
|
|
|
def initialize_options(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def finalize_options(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
# Build the plugin eggs
|
2014-09-03 21:28:28 +00:00
|
|
|
plugin_path = "deluge/plugins/*"
|
2011-06-05 15:58:27 +00:00
|
|
|
|
2014-09-03 21:28:28 +00:00
|
|
|
for path in glob.glob(plugin_path):
|
2011-06-05 15:58:27 +00:00
|
|
|
if os.path.exists(os.path.join(path, "setup.py")):
|
|
|
|
os.system("cd " + path + "&& " + sys.executable + " setup.py egg_info")
|
|
|
|
|
|
|
|
|
2014-09-19 18:10:09 +00:00
|
|
|
class BuildDocs(BuildDoc):
|
2009-07-22 23:04:48 +00:00
|
|
|
def run(self):
|
2014-02-20 17:24:11 +00:00
|
|
|
class Mock(object):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
pass
|
2009-10-09 16:26:10 +00:00
|
|
|
|
2009-07-22 23:04:48 +00:00
|
|
|
def __call__(self, *args, **kwargs):
|
2014-02-20 17:24:11 +00:00
|
|
|
return Mock()
|
2009-07-22 23:04:48 +00:00
|
|
|
|
|
|
|
def __getattr__(self, key):
|
2014-02-20 17:24:11 +00:00
|
|
|
return Mock()
|
2009-07-22 23:04:48 +00:00
|
|
|
|
|
|
|
def __setattr__(self, key, value):
|
|
|
|
self.__dict__[key] = value
|
|
|
|
|
2014-02-20 17:24:11 +00:00
|
|
|
def __len__(self):
|
|
|
|
return 0
|
|
|
|
|
|
|
|
def __getitem__(self, ii):
|
|
|
|
return " "
|
|
|
|
|
2009-07-22 23:04:48 +00:00
|
|
|
old_import = __builtins__.__import__
|
2014-09-03 21:28:28 +00:00
|
|
|
|
2009-07-22 23:04:48 +00:00
|
|
|
def new_import(name, globals={}, locals={}, fromlist=[], level=-1):
|
|
|
|
try:
|
|
|
|
return old_import(name, globals, locals, fromlist, level)
|
2014-02-20 17:24:11 +00:00
|
|
|
except ImportError as ex:
|
2014-09-22 11:43:28 +00:00
|
|
|
# sys.stdout.write("ImportError: %s\n" % ex)
|
2014-02-20 17:24:11 +00:00
|
|
|
return Mock()
|
|
|
|
|
|
|
|
except Exception as ex:
|
2014-09-22 11:43:28 +00:00
|
|
|
# sys.stdout.write("Skipping Exception: %s\n" % ex)
|
2014-02-20 17:24:11 +00:00
|
|
|
return Mock()
|
2009-07-22 23:04:48 +00:00
|
|
|
__builtins__.__import__ = new_import
|
2009-10-09 16:26:10 +00:00
|
|
|
|
2009-07-22 23:04:48 +00:00
|
|
|
BuildDoc.run(self)
|
|
|
|
|
2013-05-06 06:34:26 +00:00
|
|
|
|
2014-09-19 18:10:09 +00:00
|
|
|
class Build(_build):
|
|
|
|
sub_commands = [('BuildTranslations', None), ('BuildPlugins', None)] + _build.sub_commands
|
2014-09-03 21:28:28 +00:00
|
|
|
|
2007-09-16 01:24:08 +00:00
|
|
|
def run(self):
|
2008-11-25 22:21:14 +00:00
|
|
|
# Run all sub-commands (at least those that need to be run)
|
2007-09-16 01:24:08 +00:00
|
|
|
_build.run(self)
|
2013-05-06 06:34:26 +00:00
|
|
|
try:
|
|
|
|
from deluge._libtorrent import lt
|
|
|
|
print "Found libtorrent version: %s" % lt.version
|
|
|
|
except ImportError, e:
|
|
|
|
print "Warning libtorrent not found: %s" % e
|
|
|
|
|
2007-09-16 01:24:08 +00:00
|
|
|
|
2014-09-19 18:10:09 +00:00
|
|
|
class CleanPlugins(cmd.Command):
|
2008-11-25 22:21:14 +00:00
|
|
|
description = "Cleans the plugin folders"
|
|
|
|
user_options = [
|
2014-09-03 21:28:28 +00:00
|
|
|
('all', 'a', "remove all build output, not just temporary by-products")
|
2008-11-25 22:21:14 +00:00
|
|
|
]
|
|
|
|
boolean_options = ['all']
|
|
|
|
|
|
|
|
def initialize_options(self):
|
|
|
|
self.all = None
|
|
|
|
|
|
|
|
def finalize_options(self):
|
|
|
|
self.set_undefined_options('clean', ('all', 'all'))
|
|
|
|
|
|
|
|
def run(self):
|
2011-06-05 15:58:27 +00:00
|
|
|
print("Cleaning the plugin's folders..")
|
2008-11-25 22:21:14 +00:00
|
|
|
|
2014-09-03 21:28:28 +00:00
|
|
|
plugin_path = "deluge/plugins/*"
|
2008-11-25 22:21:14 +00:00
|
|
|
|
2014-09-03 21:28:28 +00:00
|
|
|
for path in glob.glob(plugin_path):
|
2008-11-25 22:21:14 +00:00
|
|
|
if os.path.exists(os.path.join(path, "setup.py")):
|
2009-02-23 11:25:07 +00:00
|
|
|
c = "cd " + path + "&& " + sys.executable + " setup.py clean"
|
2008-11-25 22:21:14 +00:00
|
|
|
if self.all:
|
|
|
|
c += " -a"
|
|
|
|
os.system(c)
|
|
|
|
|
|
|
|
# Delete the .eggs
|
|
|
|
if path[-4:] == ".egg":
|
|
|
|
print("Deleting %s" % path)
|
|
|
|
os.remove(path)
|
|
|
|
|
2014-09-03 21:28:28 +00:00
|
|
|
egg_info_dir_path = "deluge/plugins/*/*.egg-info"
|
2011-06-05 15:58:27 +00:00
|
|
|
|
2014-09-03 21:28:28 +00:00
|
|
|
for path in glob.glob(egg_info_dir_path):
|
2011-06-05 15:58:27 +00:00
|
|
|
# Delete the .egg-info's directories
|
|
|
|
if path[-9:] == ".egg-info":
|
|
|
|
print("Deleting %s" % path)
|
|
|
|
for fpath in os.listdir(path):
|
|
|
|
os.remove(os.path.join(path, fpath))
|
|
|
|
os.removedirs(path)
|
|
|
|
|
2014-09-03 21:28:28 +00:00
|
|
|
root_egg_info_dir_path = "deluge*.egg-info"
|
2012-01-09 19:58:37 +00:00
|
|
|
|
2014-09-03 21:28:28 +00:00
|
|
|
for path in glob.glob(root_egg_info_dir_path):
|
2012-01-09 19:58:37 +00:00
|
|
|
print("Deleting %s" % path)
|
|
|
|
for fpath in os.listdir(path):
|
|
|
|
os.remove(os.path.join(path, fpath))
|
|
|
|
os.removedirs(path)
|
|
|
|
|
2013-05-06 06:34:26 +00:00
|
|
|
|
2014-09-19 18:10:09 +00:00
|
|
|
class Clean(_clean):
|
|
|
|
sub_commands = _clean.sub_commands + [('CleanPlugins', None)]
|
2008-11-25 22:21:14 +00:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
# Run all sub-commands (at least those that need to be run)
|
|
|
|
for cmd_name in self.get_sub_commands():
|
|
|
|
self.run_command(cmd_name)
|
|
|
|
_clean.run(self)
|
|
|
|
|
2012-01-02 16:53:28 +00:00
|
|
|
if os.path.exists(desktop_data):
|
|
|
|
print("Deleting %s" % desktop_data)
|
|
|
|
os.remove(desktop_data)
|
|
|
|
|
2007-09-16 01:24:08 +00:00
|
|
|
cmdclass = {
|
2014-09-20 17:55:21 +00:00
|
|
|
'build': Build,
|
|
|
|
'build_trans': BuildTranslations,
|
|
|
|
'build_plugins': BuildPlugins,
|
|
|
|
'build_docs': BuildDocs,
|
|
|
|
'clean_plugins': CleanPlugins,
|
|
|
|
'clean': Clean,
|
|
|
|
'egg_info_plugins': EggInfoPlugins
|
2007-09-16 01:24:08 +00:00
|
|
|
}
|
|
|
|
|
2008-11-29 02:12:09 +00:00
|
|
|
# Data files to be installed to the system
|
|
|
|
_data_files = [
|
2013-05-02 17:35:53 +00:00
|
|
|
('share/icons/hicolor/scalable/apps', ['deluge/ui/data/icons/hicolor/scalable/apps/deluge.svg']),
|
2011-04-29 04:25:54 +00:00
|
|
|
('share/icons/hicolor/128x128/apps', ['deluge/ui/data/icons/hicolor/128x128/apps/deluge.png']),
|
|
|
|
('share/icons/hicolor/16x16/apps', ['deluge/ui/data/icons/hicolor/16x16/apps/deluge.png']),
|
|
|
|
('share/icons/hicolor/192x192/apps', ['deluge/ui/data/icons/hicolor/192x192/apps/deluge.png']),
|
|
|
|
('share/icons/hicolor/22x22/apps', ['deluge/ui/data/icons/hicolor/22x22/apps/deluge.png']),
|
|
|
|
('share/icons/hicolor/24x24/apps', ['deluge/ui/data/icons/hicolor/24x24/apps/deluge.png']),
|
|
|
|
('share/icons/hicolor/256x256/apps', ['deluge/ui/data/icons/hicolor/256x256/apps/deluge.png']),
|
|
|
|
('share/icons/hicolor/32x32/apps', ['deluge/ui/data/icons/hicolor/32x32/apps/deluge.png']),
|
|
|
|
('share/icons/hicolor/36x36/apps', ['deluge/ui/data/icons/hicolor/36x36/apps/deluge.png']),
|
|
|
|
('share/icons/hicolor/48x48/apps', ['deluge/ui/data/icons/hicolor/48x48/apps/deluge.png']),
|
|
|
|
('share/icons/hicolor/64x64/apps', ['deluge/ui/data/icons/hicolor/64x64/apps/deluge.png']),
|
|
|
|
('share/icons/hicolor/72x72/apps', ['deluge/ui/data/icons/hicolor/72x72/apps/deluge.png']),
|
|
|
|
('share/icons/hicolor/96x96/apps', ['deluge/ui/data/icons/hicolor/96x96/apps/deluge.png']),
|
|
|
|
('share/pixmaps', ['deluge/ui/data/pixmaps/deluge.png', 'deluge/ui/data/pixmaps/deluge.xpm']),
|
2009-10-09 16:26:10 +00:00
|
|
|
('share/man/man1', [
|
|
|
|
'docs/man/deluge.1',
|
|
|
|
'docs/man/deluged.1',
|
|
|
|
'docs/man/deluge-gtk.1',
|
2009-11-02 15:35:56 +00:00
|
|
|
'docs/man/deluge-web.1',
|
2009-10-09 16:26:10 +00:00
|
|
|
'docs/man/deluge-console.1'])
|
2008-11-29 02:12:09 +00:00
|
|
|
]
|
|
|
|
|
2012-02-20 16:56:20 +00:00
|
|
|
if not windows_check() and os.path.exists(desktop_data):
|
|
|
|
_data_files.append(('share/applications', [desktop_data]))
|
2011-07-22 18:12:47 +00:00
|
|
|
|
2010-10-31 09:18:09 +00:00
|
|
|
entry_points = {
|
|
|
|
"console_scripts": [
|
2013-09-08 08:13:36 +00:00
|
|
|
"deluge-console = deluge.ui.console:start"
|
2010-10-31 09:18:09 +00:00
|
|
|
],
|
|
|
|
"gui_scripts": [
|
|
|
|
"deluge = deluge.main:start_ui",
|
2013-09-08 08:13:36 +00:00
|
|
|
"deluge-gtk = deluge.ui.gtkui:start",
|
|
|
|
"deluge-web = deluge.ui.web:start",
|
|
|
|
"deluged = deluge.main:start_daemon"
|
2010-10-31 09:18:09 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
if windows_check():
|
2013-09-08 08:13:36 +00:00
|
|
|
entry_points["console_scripts"].extend([
|
|
|
|
"deluge-debug = deluge.main:start_ui",
|
|
|
|
"deluge-web-debug = deluge.ui.web:start",
|
|
|
|
"deluged-debug = deluge.main:start_daemon"])
|
2010-10-31 09:18:09 +00:00
|
|
|
|
2007-07-04 08:24:30 +00:00
|
|
|
# Main setup
|
|
|
|
setup(
|
2014-09-03 21:28:28 +00:00
|
|
|
name="deluge",
|
|
|
|
version=get_version(prefix='deluge-', suffix='.dev0'),
|
|
|
|
fullname="Deluge Bittorrent Client",
|
|
|
|
description="Bittorrent Client",
|
|
|
|
author="Andrew Resch, Damien Churchill",
|
|
|
|
author_email="andrewresch@gmail.com, damoxc@gmail.com",
|
|
|
|
keywords="torrent bittorrent p2p fileshare filesharing",
|
|
|
|
long_description="""Deluge is a bittorrent client that utilizes a
|
2009-05-05 19:07:05 +00:00
|
|
|
daemon/client model. There are various user interfaces available for
|
2009-05-05 19:04:53 +00:00
|
|
|
Deluge such as the GTKui, the webui and a console ui. Deluge uses
|
2008-11-29 20:48:37 +00:00
|
|
|
libtorrent in it's backend to handle the bittorrent protocol.""",
|
2014-09-03 21:28:28 +00:00
|
|
|
url="http://deluge-torrent.org",
|
|
|
|
license="GPLv3",
|
|
|
|
cmdclass=cmdclass,
|
|
|
|
data_files=_data_files,
|
|
|
|
package_data={"deluge": ["ui/gtkui/glade/*.glade",
|
|
|
|
"ui/gtkui/glade/*.ui",
|
|
|
|
"ui/data/pixmaps/*.png",
|
|
|
|
"ui/data/pixmaps/*.svg",
|
|
|
|
"ui/data/pixmaps/*.ico",
|
|
|
|
"ui/data/pixmaps/*.gif",
|
|
|
|
"ui/data/pixmaps/flags/*.png",
|
|
|
|
"plugins/*.egg",
|
|
|
|
"i18n/*/LC_MESSAGES/*.mo",
|
|
|
|
"ui/web/index.html",
|
|
|
|
"ui/web/css/*.css",
|
|
|
|
"ui/web/icons/*.png",
|
|
|
|
"ui/web/images/*.gif",
|
|
|
|
"ui/web/images/*.png",
|
|
|
|
"ui/web/js/*.js",
|
|
|
|
"ui/web/js/*/*.js",
|
|
|
|
"ui/web/js/*/.order",
|
|
|
|
"ui/web/js/*/*/*.js",
|
|
|
|
"ui/web/js/*/*/.order",
|
|
|
|
"ui/web/js/*/*/*/*.js",
|
|
|
|
"ui/web/render/*.html",
|
|
|
|
"ui/web/themes/css/*.css",
|
|
|
|
"ui/web/themes/images/*/*.gif",
|
|
|
|
"ui/web/themes/images/*/*.png",
|
|
|
|
"ui/web/themes/images/*/*/*.gif",
|
|
|
|
"ui/web/themes/images/*/*/*.png"
|
|
|
|
]},
|
|
|
|
packages=find_packages(exclude=["plugins", "docs", "tests"]),
|
|
|
|
namespace_packages=["deluge", "deluge.plugins"],
|
|
|
|
entry_points=entry_points
|
2008-07-10 04:40:13 +00:00
|
|
|
)
|