]> git.lizzy.rs Git - torbrowser-launcher.git/blob - setup.py
changed license to BSD (#30), and changed version to 0.0.1
[torbrowser-launcher.git] / setup.py
1 from distutils.core import setup
2
3 setup(name='torbrowser-launcher',
4       version='0.0.1',
5       author='Micah Lee',
6       author_email='micahflee@riseup.net',
7       url='https://www.github.com/micahflee/torbrowser-launcher',
8       platforms=['GNU/Linux'],
9       license='BSD',
10
11       description='A program to help you download, keep updated, and run the Tor Browser Bundle',
12       long_description="""
13 Tor Browser Launcher is intended to make the Tor Browser Bundle (TBB) easier to maintain and use for GNU/Linux users. You install torbrowser-launcher from your distribution's package manager and it handles downloading the most recent version of TBB for you, in your language and for your architecture. It also adds a "Tor Browser" application launcher to your operating system's menu.
14
15 When you first launch Tor Browser Launcher, it will download TBB from https://www.torproject.org/ and extract it in ~/.torproject, and then execute it. When you run it after that it will just execute TBB.
16
17 Tor Browser Launcher will get updated each time a new version of TBB is released. When you open Tor Browser after an update, it will download the newer version of TBB for you and extract it over your old TBB directory in ~/.torproject, so you will maintain your TBB bookmarks. 
18 """,
19
20       scripts=['torbrowser-launcher'],
21       data_files=[('/usr/share/applications', ['torbrowser.desktop']),
22                   ('/usr/share/pixmaps', ['img/torbrowser32.xpm', 'img/torbrowser80.xpm']),
23                   ('/usr/share/torbrowser-launcher', ['keys/erinn.asc', 'keys/sebastian.asc', 'torproject.pem']),
24                   ('/usr/share/torbrowser-launcher/locale/en', ['locale/en/messages.pot'])]
25       )