mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-21 07:38:10 +00:00
renamed core
This commit is contained in:
parent
072ce52a0f
commit
d39e57024a
13
setup.py
13
setup.py
@ -1,3 +1,4 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# Copyright (c) 2006 Zach Tibbitts ('zachtib') <zach@collegegeek.org>
|
# Copyright (c) 2006 Zach Tibbitts ('zachtib') <zach@collegegeek.org>
|
||||||
#
|
#
|
||||||
@ -24,7 +25,7 @@ pythonVersion = platform.python_version()[0:3]
|
|||||||
|
|
||||||
from distutils.core import setup, Extension
|
from distutils.core import setup, Extension
|
||||||
|
|
||||||
flood_core = Extension('flood_core',
|
deluge_core = Extension('deluge_core',
|
||||||
include_dirs = ['./include', './include/libtorrent',
|
include_dirs = ['./include', './include/libtorrent',
|
||||||
'/usr/include/python' + pythonVersion],
|
'/usr/include/python' + pythonVersion],
|
||||||
libraries = ['boost_filesystem', 'boost_date_time',
|
libraries = ['boost_filesystem', 'boost_date_time',
|
||||||
@ -44,7 +45,7 @@ flood_core = Extension('flood_core',
|
|||||||
'cpp/peer_connection.cpp',
|
'cpp/peer_connection.cpp',
|
||||||
'cpp/piece_picker.cpp',
|
'cpp/piece_picker.cpp',
|
||||||
'cpp/policy.cpp',
|
'cpp/policy.cpp',
|
||||||
'cpp/flood_core.cpp',
|
'cpp/deluge_core.cpp',
|
||||||
'cpp/session.cpp',
|
'cpp/session.cpp',
|
||||||
'cpp/session_impl.cpp',
|
'cpp/session_impl.cpp',
|
||||||
'cpp/sha1.cpp',
|
'cpp/sha1.cpp',
|
||||||
@ -67,13 +68,13 @@ flood_core = Extension('flood_core',
|
|||||||
'cpp/kademlia/traversal_algorithm.cpp'])
|
'cpp/kademlia/traversal_algorithm.cpp'])
|
||||||
|
|
||||||
|
|
||||||
setup(name="Deluge", fullname="Deluge Bittorrent Client", version="0.5.0",
|
setup(name="deluge", fullname="Deluge Bittorrent Client", version="0.5.0",
|
||||||
author="Zach Tibbitts, Alon Zakai",
|
author="Zach Tibbitts, Alon Zakai",
|
||||||
description="A bittorrent client written in PyGTK",
|
description="A bittorrent client written in PyGTK",
|
||||||
url="http://deluge-torrent.org",
|
url="http://deluge-torrent.org",
|
||||||
license="GPLv2",
|
license="GPLv2",
|
||||||
scripts=["scripts/deluge"],
|
scripts=["scripts/deluge"],
|
||||||
py_modules=["dcommon", "delugegtk", "dgtk", "flood","flood_stats"],
|
py_modules=["deluge", "deluge_stats", "delugegtk", "dgtk", "dcommon"],
|
||||||
data_files=[("share/glade", ["glade/delugegtk.glade"])],
|
data_files=[("share/glade", ["glade/delugegtk.glade", "glade/dgtkpopups.glade", "glade/dgtkpref.glade"])],
|
||||||
ext_modules=[flood_core]
|
ext_modules=[deluge_core]
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user