2016-02-12 17:34:19 -05:00
|
|
|
#!/usr/bin/env python3
|
2014-09-02 20:30:01 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-09-02 15:10:42 -04:00
|
|
|
"""
|
|
|
|
OnionShare | https://onionshare.org/
|
|
|
|
|
2017-01-06 21:58:15 -05:00
|
|
|
Copyright (C) 2017 Micah Lee <micah@micahflee.com>
|
2014-09-02 15:10:42 -04:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""
|
2014-05-23 11:37:10 -04:00
|
|
|
|
2016-09-04 22:21:09 -04:00
|
|
|
import os, sys, platform, tempfile
|
2014-05-23 11:37:10 -04:00
|
|
|
|
2014-06-20 00:03:30 -04:00
|
|
|
def file_list(path):
|
|
|
|
files = []
|
|
|
|
for filename in os.listdir(path):
|
2015-05-31 12:44:12 -04:00
|
|
|
if os.path.isfile(os.path.join(path, filename)):
|
|
|
|
files.append(os.path.join(path, filename))
|
2014-06-20 00:03:30 -04:00
|
|
|
return files
|
|
|
|
|
2016-04-12 18:14:02 -04:00
|
|
|
version = open('resources/version.txt').read().strip()
|
2014-11-18 12:59:48 -05:00
|
|
|
description = (
|
|
|
|
"""OnionShare lets you securely and anonymously share a file of any size with someone. """
|
|
|
|
"""It works by starting a web server, making it accessible as a Tor hidden service, """
|
|
|
|
"""and generating an unguessable URL to access and download the file.""")
|
|
|
|
long_description = description + " " + (
|
|
|
|
"""It doesn't require setting up a server on the internet somewhere or using a third """
|
|
|
|
"""party filesharing service. You host the file on your own computer and use a Tor """
|
|
|
|
"""hidden service to make it temporarily accessible over the internet. The other user """
|
|
|
|
"""just needs to use Tor Browser to download the file from you."""
|
|
|
|
)
|
2016-09-04 23:57:38 -04:00
|
|
|
author = 'Micah Lee'
|
|
|
|
author_email = 'micah@micahflee.com'
|
|
|
|
url = 'https://github.com/micahflee/onionshare'
|
2016-09-04 22:21:09 -04:00
|
|
|
license = 'GPL v3'
|
2016-09-04 23:57:38 -04:00
|
|
|
keywords = 'onion, share, onionshare, tor, anonymous, web server'
|
2015-05-15 19:56:22 -04:00
|
|
|
|
2016-09-05 14:06:30 -04:00
|
|
|
p = platform.system()
|
2016-09-04 22:36:56 -04:00
|
|
|
|
2016-09-04 22:21:09 -04:00
|
|
|
# Windows and Mac
|
2016-09-05 14:06:30 -04:00
|
|
|
if p == 'Windows' or p == 'Darwin':
|
2016-09-04 23:57:38 -04:00
|
|
|
from cx_Freeze import setup, Executable
|
2016-09-04 22:21:09 -04:00
|
|
|
|
2016-09-05 14:06:30 -04:00
|
|
|
if p == 'Windows':
|
2016-09-04 22:21:09 -04:00
|
|
|
executables = [
|
|
|
|
Executable('install/scripts/onionshare',
|
|
|
|
icon='install/onionshare.ico',
|
|
|
|
base=None),
|
|
|
|
Executable('install/scripts/onionshare-gui',
|
|
|
|
icon='install/onionshare.ico',
|
|
|
|
shortcutName='OnionShare',
|
|
|
|
shortcutDir='ProgramMenuFolder',
|
|
|
|
base='Win32GUI')
|
|
|
|
]
|
|
|
|
custom_info_plist = ''
|
|
|
|
|
2016-09-05 14:06:30 -04:00
|
|
|
elif p == 'Darwin':
|
2016-09-04 22:21:09 -04:00
|
|
|
executables = [
|
|
|
|
Executable('install/scripts/onionshare-gui'),
|
|
|
|
Executable('install/scripts/onionshare')
|
|
|
|
]
|
|
|
|
|
|
|
|
# Write the correct version into Info.plist
|
|
|
|
f = tempfile.NamedTemporaryFile(mode='w')
|
|
|
|
custom_info_plist = f.name
|
|
|
|
f.write(open('install/Info.plist').read().replace('{VERSION}', str(version)))
|
|
|
|
f.flush()
|
|
|
|
|
2016-09-04 23:57:38 -04:00
|
|
|
setup(
|
2016-09-04 22:21:09 -04:00
|
|
|
name='OnionShare', version=version,
|
|
|
|
description=description, long_description=long_description,
|
|
|
|
author=author, author_email=author_email,
|
|
|
|
url=url, license=license, keywords=keywords,
|
2016-09-04 22:36:56 -04:00
|
|
|
options={
|
2016-09-04 22:21:09 -04:00
|
|
|
'build_exe': {
|
|
|
|
'packages': ['jinja2.ext'],
|
|
|
|
'excludes': [],
|
|
|
|
'include_files': ['resources']
|
|
|
|
},
|
|
|
|
'bdist_mac': {
|
|
|
|
'iconfile': 'install/onionshare.icns',
|
|
|
|
'bundle_name': 'OnionShare',
|
|
|
|
'qt_menu_nib': '/usr/local/Cellar/qt5/5.6.1-1/plugins/platforms',
|
|
|
|
'custom_info_plist': custom_info_plist
|
2016-09-04 23:57:38 -04:00
|
|
|
}
|
|
|
|
},
|
2016-09-04 22:21:09 -04:00
|
|
|
executables=executables
|
2016-09-04 23:57:38 -04:00
|
|
|
)
|
|
|
|
|
2016-09-04 22:21:09 -04:00
|
|
|
# Linux
|
|
|
|
else:
|
2016-09-04 23:57:38 -04:00
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
2016-09-04 22:21:09 -04:00
|
|
|
name='onionshare', version=version,
|
|
|
|
description=description, long_description=long_description,
|
|
|
|
author=author, author_email=author_email,
|
|
|
|
url=url, license=license, keywords=keywords,
|
2016-09-04 23:57:38 -04:00
|
|
|
packages=['onionshare', 'onionshare_gui'],
|
|
|
|
include_package_data=True,
|
|
|
|
scripts=['install/scripts/onionshare', 'install/scripts/onionshare-gui'],
|
|
|
|
data_files=[
|
|
|
|
(os.path.join(sys.prefix, 'share/applications'), ['install/onionshare.desktop']),
|
|
|
|
(os.path.join(sys.prefix, 'share/appdata'), ['install/onionshare.appdata.xml']),
|
|
|
|
(os.path.join(sys.prefix, 'share/pixmaps'), ['install/onionshare80.xpm']),
|
|
|
|
(os.path.join(sys.prefix, 'share/onionshare'), [
|
|
|
|
'resources/version.txt',
|
|
|
|
'resources/wordlist.txt'
|
|
|
|
]),
|
2016-09-04 22:21:09 -04:00
|
|
|
(os.path.join(sys.prefix, 'share/onionshare/images'), [
|
|
|
|
'resources/images/logo.png',
|
|
|
|
'resources/images/drop_files.png',
|
|
|
|
'resources/images/server_stopped.png',
|
|
|
|
'resources/images/server_started.png',
|
|
|
|
'resources/images/server_working.png'
|
|
|
|
]),
|
|
|
|
(os.path.join(sys.prefix, 'share/onionshare/locale'), [
|
|
|
|
'resources/locale/cs.json',
|
|
|
|
'resources/locale/de.json',
|
|
|
|
'resources/locale/en.json',
|
|
|
|
'resources/locale/eo.json',
|
|
|
|
'resources/locale/es.json',
|
|
|
|
'resources/locale/fi.json',
|
|
|
|
'resources/locale/fr.json',
|
|
|
|
'resources/locale/it.json',
|
|
|
|
'resources/locale/nl.json',
|
|
|
|
'resources/locale/no.json',
|
|
|
|
'resources/locale/pt.json',
|
|
|
|
'resources/locale/ru.json',
|
|
|
|
'resources/locale/tr.json'
|
|
|
|
]),
|
|
|
|
(os.path.join(sys.prefix, 'share/onionshare/html'), [
|
|
|
|
'resources/html/index.html',
|
|
|
|
'resources/html/denied.html',
|
|
|
|
'resources/html/404.html'
|
|
|
|
]),
|
2016-09-04 23:57:38 -04:00
|
|
|
('/usr/share/nautilus-python/extensions/', ['install/scripts/onionshare-nautilus.py']),
|
|
|
|
]
|
|
|
|
)
|