mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-13 03:46:43 +00:00
Fix building on FreeBSD
Add some more metadata
This commit is contained in:
parent
bb8c41ad03
commit
6bd1682728
13
setup.py
13
setup.py
@ -122,7 +122,10 @@ if windows_check():
|
|||||||
'zlib'
|
'zlib'
|
||||||
]
|
]
|
||||||
else:
|
else:
|
||||||
_include_dirs += ['/usr/include/python' + python_version]
|
_include_dirs += [
|
||||||
|
'/usr/include/python' + python_version,
|
||||||
|
sysconfig.get_config_var("INCLUDEDIR")
|
||||||
|
]
|
||||||
_library_dirs += [sysconfig.get_config_var("LIBDIR"), '/opt/local/lib']
|
_library_dirs += [sysconfig.get_config_var("LIBDIR"), '/opt/local/lib']
|
||||||
if osx_check():
|
if osx_check():
|
||||||
_include_dirs += [
|
_include_dirs += [
|
||||||
@ -320,11 +323,15 @@ _data_files = [
|
|||||||
# Main setup
|
# Main setup
|
||||||
setup(
|
setup(
|
||||||
author = "Andrew Resch, Marcos Pinto, Martijn Voncken, Sadrul Habib Chowdhury",
|
author = "Andrew Resch, Marcos Pinto, Martijn Voncken, Sadrul Habib Chowdhury",
|
||||||
author_email = "andrewresch@gmail.com, markybob@dipconsultants.com, \
|
author_email = "andrewresch@gmail.com, markybob@dipconsultants.com, mvoncken@gmail.com, sadrul@users.sourceforge.net",
|
||||||
mvoncken@gmail.com, sadrul@users.sourceforge.net",
|
|
||||||
cmdclass = cmdclass,
|
cmdclass = cmdclass,
|
||||||
data_files = _data_files,
|
data_files = _data_files,
|
||||||
description = "Bittorrent Client",
|
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 = """
|
entry_points = """
|
||||||
[console_scripts]
|
[console_scripts]
|
||||||
deluge = deluge.main:start_ui
|
deluge = deluge.main:start_ui
|
||||||
|
Loading…
x
Reference in New Issue
Block a user