deluge/setup.py

80 lines
3.0 KiB
Python
Raw Normal View History

#
2007-01-08 04:18:24 +00:00
# Copyright (c) 2006 Zach Tibbitts ('zachtib') <zach@collegegeek.org>
2006-11-29 23:41:58 +00:00
#
# 2006-15-9
2006-11-29 23:41:58 +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
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
import platform, os
pythonVersion = platform.python_version()[0:3]
2006-11-29 23:41:58 +00:00
from distutils.core import setup, Extension
2007-01-07 22:50:26 +00:00
flood_core = Extension('flood_core',
include_dirs = ['./include', './include/libtorrent',
'/usr/include/python' + pythonVersion],
libraries = ['boost_filesystem', 'boost_date_time',
'boost_program_options', 'boost_regex',
'boost_serialization', 'boost_thread', 'z', 'pthread'],
extra_compile_args = ["-Wno-missing-braces"],
# extra_link_args = [""],
sources = ['cpp/alert.cpp',
'cpp/allocate_resources.cpp',
'cpp/bt_peer_connection.cpp',
'cpp/entry.cpp',
'cpp/escape_string.cpp',
'cpp/file.cpp',
'cpp/http_tracker_connection.cpp',
'cpp/identify_client.cpp',
'cpp/ip_filter.cpp',
'cpp/peer_connection.cpp',
'cpp/piece_picker.cpp',
'cpp/policy.cpp',
'cpp/flood_core.cpp',
'cpp/session.cpp',
'cpp/session_impl.cpp',
'cpp/sha1.cpp',
'cpp/stat.cpp',
'cpp/storage.cpp',
'cpp/torrent.cpp',
'cpp/torrent_handle.cpp',
'cpp/torrent_info.cpp',
'cpp/tracker_manager.cpp',
'cpp/udp_tracker_connection.cpp',
'cpp/web_peer_connection.cpp',
'cpp/kademlia/closest_nodes.cpp',
'cpp/kademlia/dht_tracker.cpp',
'cpp/kademlia/find_data.cpp',
'cpp/kademlia/node.cpp',
'cpp/kademlia/node_id.cpp',
'cpp/kademlia/refresh.cpp',
'cpp/kademlia/routing_table.cpp',
'cpp/kademlia/rpc_manager.cpp',
'cpp/kademlia/traversal_algorithm.cpp'])
2006-11-29 23:41:58 +00:00
setup(name="Deluge", fullname="Deluge Bittorrent Client", version="0.5.0",
2007-01-07 22:50:26 +00:00
author="Zach Tibbitts, Alon Zakai",
2006-11-29 23:41:58 +00:00
description="A bittorrent client written in PyGTK",
url="http://deluge-torrent.org",
license="GPLv2",
2007-01-07 22:50:26 +00:00
scripts=["scripts/deluge"],
2007-01-08 04:18:24 +00:00
py_modules=["dcommon", "delugegtk", "dgtk", "flood","flood_stats"],
data_files=[("share/glade", ["glade/delugegtk.glade"])],
ext_modules=[flood_core]
2006-11-29 23:41:58 +00:00
)