Update onionshare description, and reduce python version to 3.6 in pyproject.toml

This commit is contained in:
Micah Lee 2020-05-03 14:04:54 -07:00
parent f34e4f986a
commit 0e0d0f5689
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73
3 changed files with 12 additions and 23 deletions

View File

@ -1,12 +1,12 @@
[tool.poetry]
name = "onionshare"
version = "2.2"
description = "OnionShare lets you securely and anonymously send and receive files. It works by starting a web server, making it accessible as a Tor onion service, and generating an unguessable web address so others can download files from you, or upload files to you. It does _not_ require setting up a separate server or using a third party file-sharing service."
description = "Securely and anonymously send and receive files, and publish onion sites"
authors = ["Micah Lee <micah@micahflee.com>"]
license = "GPLv3+"
[tool.poetry.dependencies]
python = "^3.7"
python = "^3.6"
altgraph = "*"
certifi = "*"
chardet = "*"

View File

@ -33,25 +33,12 @@ def file_list(path):
version = open("share/version.txt").read().strip()
description = (
"""OnionShare lets you securely and anonymously send and receive files. It """
"""works by starting a web server, making it accessible as a Tor onion """
"""service, and generating an unguessable web address so others can download """
"""files from you, or upload files to you. It does _not_ require setting up """
"""a separate server or using a third party file-sharing service."""
)
long_description = (
description
+ "\n\n"
+ (
"""If you want to send files to someone, OnionShare hosts them on your own """
"""computer and uses a Tor onion service to make them temporarily accessible """
"""over the internet. The receiving user just needs to open the web address """
"""in Tor Browser to download the files. If you want to receive files, """
"""OnionShare hosts an anonymous dropbox directly on your computer and uses """
"""a Tor onion service to make it temporarily accessible over the internet. """
"""Other users can upload files to you from by loading the web address in """
"""Tor Browser."""
)
"""OnionShare is an open source tool for securely and anonymously sending and """
"""receiving files and publishing websites using Tor onion services. It works by """
"""starting a web server directly on your computer and making it accessible as """
"""an unguessable Tor web address that others can load in Tor Browser. It """
"""doesn't require setting up a separate server, using a third party service, or """
"""even logging into an account."""
)
author = "Micah Lee"
author_email = "micah@micahflee.com"
@ -92,7 +79,6 @@ setup(
name="onionshare",
version=version,
description=description,
long_description=long_description,
author=author,
author_email=author_email,
maintainer=author,

View File

@ -37,10 +37,13 @@ apps:
parts:
onionshare:
source: .
source: https://github.com/micahflee/onionshare.git
source-type: git
source-branch: 1111_snap
plugin: python
python-version: python3
python-packages:
- poetry
- Click
- Flask
- Flask-HTTPAuth