mirror of
https://github.com/onionshare/onionshare.git
synced 2025-02-14 13:41:25 -05:00
Update onionshare description, and reduce python version to 3.6 in pyproject.toml
This commit is contained in:
parent
102f42e225
commit
2508bbf29f
@ -1,12 +1,12 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "onionshare"
|
name = "onionshare"
|
||||||
version = "2.2"
|
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>"]
|
authors = ["Micah Lee <micah@micahflee.com>"]
|
||||||
license = "GPLv3+"
|
license = "GPLv3+"
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.7"
|
python = "^3.6"
|
||||||
altgraph = "*"
|
altgraph = "*"
|
||||||
certifi = "*"
|
certifi = "*"
|
||||||
chardet = "*"
|
chardet = "*"
|
||||||
|
26
setup.py
26
setup.py
@ -33,25 +33,12 @@ def file_list(path):
|
|||||||
|
|
||||||
version = open("share/version.txt").read().strip()
|
version = open("share/version.txt").read().strip()
|
||||||
description = (
|
description = (
|
||||||
"""OnionShare lets you securely and anonymously send and receive files. It """
|
"""OnionShare is an open source tool for securely and anonymously sending and """
|
||||||
"""works by starting a web server, making it accessible as a Tor onion """
|
"""receiving files and publishing websites using Tor onion services. It works by """
|
||||||
"""service, and generating an unguessable web address so others can download """
|
"""starting a web server directly on your computer and making it accessible as """
|
||||||
"""files from you, or upload files to you. It does _not_ require setting up """
|
"""an unguessable Tor web address that others can load in Tor Browser. It """
|
||||||
"""a separate server or using a third party file-sharing service."""
|
"""doesn't require setting up a separate server, using a third party service, or """
|
||||||
)
|
"""even logging into an account."""
|
||||||
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."""
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
author = "Micah Lee"
|
author = "Micah Lee"
|
||||||
author_email = "micah@micahflee.com"
|
author_email = "micah@micahflee.com"
|
||||||
@ -92,7 +79,6 @@ setup(
|
|||||||
name="onionshare",
|
name="onionshare",
|
||||||
version=version,
|
version=version,
|
||||||
description=description,
|
description=description,
|
||||||
long_description=long_description,
|
|
||||||
author=author,
|
author=author,
|
||||||
author_email=author_email,
|
author_email=author_email,
|
||||||
maintainer=author,
|
maintainer=author,
|
||||||
|
@ -37,10 +37,13 @@ apps:
|
|||||||
|
|
||||||
parts:
|
parts:
|
||||||
onionshare:
|
onionshare:
|
||||||
source: .
|
source: https://github.com/micahflee/onionshare.git
|
||||||
|
source-type: git
|
||||||
|
source-branch: 1111_snap
|
||||||
plugin: python
|
plugin: python
|
||||||
python-version: python3
|
python-version: python3
|
||||||
python-packages:
|
python-packages:
|
||||||
|
- poetry
|
||||||
- Click
|
- Click
|
||||||
- Flask
|
- Flask
|
||||||
- Flask-HTTPAuth
|
- Flask-HTTPAuth
|
||||||
|
Loading…
x
Reference in New Issue
Block a user