summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Resch <andrewresch@gmail.com>2008-11-29 20:48:37 +0000
committerAndrew Resch <andrewresch@gmail.com>2008-11-29 20:48:37 +0000
commitf42564b1aae979e2fd5f763ea1298deb269a3de1 (patch)
tree9069103e078905594abc1b88887985474035caf3
parentae1ac12ff831f1c15294ea132382b47267b64b75 (diff)
downloaddeluge-f42564b1aae979e2fd5f763ea1298deb269a3de1.tar.gz
deluge-f42564b1aae979e2fd5f763ea1298deb269a3de1.tar.bz2
deluge-f42564b1aae979e2fd5f763ea1298deb269a3de1.zip
Fix building on FreeBSD
Add some more metadata
-rw-r--r--setup.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index bee0ff79c..abf9ca7d3 100644
--- a/setup.py
+++ b/setup.py
@@ -122,7 +122,10 @@ if windows_check():
'zlib'
]
else:
- _include_dirs += ['/usr/include/python' + python_version]
+ _include_dirs += [
+ '/usr/include/python' + python_version,
+ sysconfig.get_config_var("INCLUDEDIR")
+ ]
if osx_check():
_include_dirs += [
'/opt/local/include/boost-1_35',
@@ -320,11 +323,15 @@ _data_files = [
# Main setup
setup(
author = "Andrew Resch, Marcos Pinto, Martijn Voncken, Sadrul Habib Chowdhury",
- author_email = "andrewresch@gmail.com, markybob@dipconsultants.com, \
- mvoncken@gmail.com, sadrul@users.sourceforge.net",
+ author_email = "andrewresch@gmail.com, markybob@dipconsultants.com, mvoncken@gmail.com, sadrul@users.sourceforge.net",
cmdclass = cmdclass,
data_files = _data_files,
description = "Bittorrent Client",
+ long_description = """Deluge is a bittorrent client that utilizes a
+ daemon/client model. There are various user interfaces available for
+ Deluge such as the GTKui, the webui and a console ui. Deluge uses
+ libtorrent in it's backend to handle the bittorrent protocol.""",
+ keywords = "torrent bittorrent p2p fileshare filesharing",
entry_points = """
[console_scripts]
deluge = deluge.main:start_ui