]> git.lizzy.rs Git - torbrowser-launcher.git/blobdiff - setup.py
now there can only be one instance of torbrowser-launcher running at a time. fixes #23
[torbrowser-launcher.git] / setup.py
index 0f03c7ca846e3d6bb36573fb5e96d2e2f91e00e6..83a12f69a2e23ab64d9dbdc5c1370dbcdebef271 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,12 +1,40 @@
+"""
+Tor Browser Launcher
+https://github.com/micahflee/torbrowser-launcher/
+
+Copyright (c) 2013 Micah Lee <micahflee@riseup.net>
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+"""
+
 from distutils.core import setup
 
 setup(name='torbrowser-launcher',
-      version='0.1',
+      version='0.0.1',
       author='Micah Lee',
       author_email='micahflee@riseup.net',
       url='https://www.github.com/micahflee/torbrowser-launcher',
       platforms=['GNU/Linux'],
-      license='GPLv3',
+      license='BSD',
 
       description='A program to help you download, keep updated, and run the Tor Browser Bundle',
       long_description="""
@@ -18,6 +46,8 @@ Tor Browser Launcher will get updated each time a new version of TBB is released
 """,
 
       scripts=['torbrowser-launcher'],
-      data_files=[('/usr/share/applications', ['misc/torbrowser.desktop']),
-                  ('/usr/share/pixmaps', ['misc/torbrowser32.xpm', 'misc/torbrowser80.xpm'])]
+      data_files=[('/usr/share/applications', ['torbrowser.desktop']),
+                  ('/usr/share/pixmaps', ['img/torbrowser32.xpm', 'img/torbrowser80.xpm']),
+                  ('/usr/share/torbrowser-launcher', ['keys/erinn.asc', 'keys/sebastian.asc', 'torproject.pem']),
+                  ('/usr/share/torbrowser-launcher/locale/en', ['locale/en/messages.pot'])]
       )