mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
13fc2ea0e0
Packaged, refactored the main function, added a setup.py, added a better .gitignore
45 lines
1.8 KiB
Python
45 lines
1.8 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
import sys
|
|
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
|
|
if sys.argv[-1] == 'publish':
|
|
os.system('python setup.py sdist upload')
|
|
sys.exit()
|
|
|
|
setup(
|
|
name='onionshare',
|
|
version='1.0.0',
|
|
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 access and download the file.',
|
|
long_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 access and download the file. 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.""",
|
|
author='Micah Lee',
|
|
author_email='micah@micahflee.com',
|
|
url='https://github.com/micahflee/onionshare',
|
|
py_modules = ['onionshare'],
|
|
include_package_data=True,
|
|
install_requires=[
|
|
],
|
|
license="GPL v3",
|
|
zip_safe=False,
|
|
keywords='onion, share, onionshare, tor, anonymous, web server',
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: GPL License',
|
|
'Natural Language :: English',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
],
|
|
test_suite='tests',
|
|
entry_points={'console_scripts': ['onionshare = onionshare:main']}
|
|
)
|