~ubuntu-branches/ubuntu/trusty/bittornado/trusty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python

# Written by Bram Cohen
# see LICENSE.txt for license information

import sys
assert sys.version >= '2', "Install Python 2.0 or greater"
from distutils.core import setup, Extension
import BitTornado

setup(
    name = "BitTornado",
    version = BitTornado.version,
    author = "Bram Cohen, John Hoffman, Uoti Arpala et. al.",
    author_email = "<theshadow@degreez.net>",
    url = "http://www.bittornado.com",
    license = "MIT",
    
    packages = ["BitTornado","BitTornado.BT1"],

    scripts = ["btdownloadgui.py", "btdownloadheadless.py", 
        "bttrack.py", "btmakemetafile.py", "btlaunchmany.py", "btcompletedir.py",
        "btdownloadcurses.py", "btcompletedirgui.py", "btlaunchmanycurses.py", 
        "btmakemetafile.py", "btreannounce.py", "btrename.py", "btshowmetainfo.py",
        'btmaketorrentgui.py', 'btcopyannounce.py', 'btsethttpseeds.py',
        'bt-t-make.py',
        ]
    )