forked from effigies/BitTornado
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (20 loc) · 840 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (20 loc) · 840 Bytes
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
from distutils.core import setup
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']
)