~rcart/ubuntu/natty/bittornado/fix-420387

« back to all changes in this revision

Viewing changes to .pc/01_MANIFEST.in_remove_broken_cruft.dpatch/setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Cameron Dale
  • Date: 2010-03-21 14:36:30 UTC
  • Revision ID: james.westby@ubuntu.com-20100321143630-d1zk1zdasaf8125s
Tags: 0.3.18-10
* New patch from upstream's CVS to allow torrents that only have an
  announce list: 30_announce_list_only_torrents.dpatch (Closes: #551766)
* Fix a lot of lintian warnings
  - Update standards version to 3.8.4 (no changes)
* Fix for when compact_reqd is turned off:
  31_fix_for_compact_reqd_off.dpatch (Closes: #574860)
* Switch to the new "3.0 (quilt)" source format

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
# Written by Bram Cohen
 
4
# see LICENSE.txt for license information
 
5
 
 
6
import sys
 
7
assert sys.version >= '2', "Install Python 2.0 or greater"
 
8
from distutils.core import setup, Extension
 
9
import BitTornado
 
10
 
 
11
setup(
 
12
    name = "BitTornado",
 
13
    version = BitTornado.version,
 
14
    author = "Bram Cohen, John Hoffman, Uoti Arpala et. al.",
 
15
    author_email = "<theshadow@degreez.net>",
 
16
    url = "http://www.bittornado.com",
 
17
    license = "MIT",
 
18
    
 
19
    packages = ["BitTornado","BitTornado.BT1"],
 
20
 
 
21
    scripts = ["btdownloadgui.py", "btdownloadheadless.py", 
 
22
        "bttrack.py", "btmakemetafile.py", "btlaunchmany.py", "btcompletedir.py",
 
23
        "btdownloadcurses.py", "btcompletedirgui.py", "btlaunchmanycurses.py", 
 
24
        "btmakemetafile.py", "btreannounce.py", "btrename.py", "btshowmetainfo.py",
 
25
        'btmaketorrentgui.py', 'btcopyannounce.py', 'btsethttpseeds.py',
 
26
        'bt-t-make.py',
 
27
        ]
 
28
    )