File: setup.py

package info (click to toggle)
bittorrent 3.4.2-12
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,592 kB
  • sloc: python: 7,026; objc: 1,181; sh: 166; makefile: 22
file content (25 lines) | stat: -rwxr-xr-x 784 bytes parent folder | download | duplicates (7)
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
#!/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 BitTorrent

setup(
    name = "BitTorrent",
    version = BitTorrent.version,
    author = "Bram Cohen",
    author_email = "<bram@bitconjurer.org>",
    url = "http://www.bitconjurer.org/BitTorrent/",
    license = "MIT",
    
    packages = ["BitTorrent"],

    scripts = ["btdownloadgui.py", "btdownloadheadless.py", 
        "bttrack.py", "btmakemetafile.py", "btlaunchmany.py",
        "btdownloadcurses.py", "btlaunchmanycurses.py", 
        "btmakemetafile.py", "btreannounce.py", "btrename.py", "btshowmetainfo.py", "btcompletedir.py", "btcompletedirgui.py"]
    )