deluge/setup.py

120 lines
3.8 KiB
Python
Raw Normal View History

2007-07-04 08:24:30 +00:00
# setup.py
#
# Copyright (C) 2007 Andrew Resch ('andar') <andrewresch@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
# 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
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.
#
# 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:
2007-07-04 08:24:30 +00:00
# The Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor
2007-07-13 01:34:18 +00:00
# Boston, MA 02110-1301, USA.
2007-07-04 08:24:30 +00:00
#
2007-07-13 01:34:18 +00:00
# In addition, as a special exception, the copyright holders give
# permission to link the code of portions of this program with the OpenSSL
# library.
# You must obey the GNU General Public License in all respects for all of
# the code used other than OpenSSL. If you modify file(s) with this
# exception, you may extend this exception to your version of the file(s),
# but you are not obligated to do so. If you do not wish to do so, delete
# this exception statement from your version. If you delete this exception
# statement from all source files in the program, then also delete it here.
2007-07-04 08:24:30 +00:00
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages, Extension
import platform
import glob
import os
2007-07-04 08:24:30 +00:00
python_version = platform.python_version()[0:3]
# The libtorrent extension
_extra_compile_args = [
2007-07-13 01:34:18 +00:00
"-Wno-missing-braces",
"-DHAVE_INCLUDE_LIBTORRENT_ASIO____ASIO_HPP=1",
"-DHAVE_INCLUDE_LIBTORRENT_ASIO_SSL_STREAM_HPP=1",
"-DHAVE_INCLUDE_LIBTORRENT_ASIO_IP_TCP_HPP=1",
"-DHAVE_PTHREAD=1",
"-DTORRENT_USE_OPENSSL=1",
"-DHAVE_SSL=1"
2007-07-04 08:24:30 +00:00
]
_include_dirs = [
2007-07-13 01:34:18 +00:00
'./libtorrent',
'./libtorrent/include',
'./libtorrent/include/libtorrent',
'/usr/include/python' + python_version
2007-07-04 08:24:30 +00:00
]
2007-07-13 01:34:18 +00:00
_libraries = [
2007-07-13 01:34:18 +00:00
'boost_filesystem',
'boost_date_time',
'boost_thread',
'boost_python',
'z',
'pthread',
'ssl'
2007-07-04 08:24:30 +00:00
]
2007-07-09 02:50:20 +00:00
_sources = glob.glob("./libtorrent/src/*.cpp") + \
2007-07-13 01:34:18 +00:00
glob.glob("./libtorrent/src/kademlia/*.cpp") + \
glob.glob("./libtorrent/bindings/python/src/*.cpp")
2007-07-04 08:24:30 +00:00
# Remove file_win.cpp as it is only for Windows builds
for source in _sources:
2007-07-13 01:34:18 +00:00
if "file_win.cpp" in source:
_sources.remove(source)
break
2007-07-04 08:24:30 +00:00
libtorrent = Extension(
2007-07-13 01:34:18 +00:00
'libtorrent',
include_dirs = _include_dirs,
libraries = _libraries,
extra_compile_args = _extra_compile_args,
sources = _sources
2007-07-04 08:24:30 +00:00
)
# Build the plugin eggs
for path in glob.glob('deluge/plugins/*'):
print path + "/setup.py"
os.system("cd " + path + "&& python setup.py bdist_egg -d ..")
2007-07-04 08:24:30 +00:00
# Main setup
2007-07-14 01:33:16 +00:00
2007-07-04 08:24:30 +00:00
setup(
2007-07-13 01:34:18 +00:00
name = "deluge",
fullname = "Deluge Bittorent Client",
version = "0.6",
author = "Zach Tibbitts, Alon Zakai, Marcos Pinto, Andrew Resch",
author_email = "zach@collegegeek.org, kripkensteiner@gmail.com, \
marcospinto@dipconsultants.com, \
andrewresch@gmail.com",
description = "GTK+ bittorrent client",
url = "http://deluge-torrent.org",
license = "GPLv2",
include_package_data = True,
package_data = {"deluge": ["ui/gtkui/glade/*.glade",
2007-07-14 01:33:16 +00:00
"data/pixmaps/*.png",
"ui/gtkui/po/*.po?",
"plugins/*.egg",
2007-07-14 01:33:16 +00:00
]},
2007-07-13 01:34:18 +00:00
ext_package = "deluge",
ext_modules = [libtorrent],
packages = find_packages(exclude=["plugins"]),
2007-07-13 01:34:18 +00:00
entry_points = """
[console_scripts]
deluge = deluge.main:main
"""
2007-07-04 08:24:30 +00:00
)