mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
Fix building on FreeBSD
Add some more metadata
This commit is contained in:
parent
ae1ac12ff8
commit
f42564b1aa
1 changed files with 10 additions and 3 deletions
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")
|
||||||
|
]
|
||||||
if osx_check():
|
if osx_check():
|
||||||
_include_dirs += [
|
_include_dirs += [
|
||||||
'/opt/local/include/boost-1_35',
|
'/opt/local/include/boost-1_35',
|
||||||
|
@ -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…
Add table
Add a link
Reference in a new issue