mirror of
https://github.com/onionshare/onionshare.git
synced 2025-05-31 12:14:15 -04:00
commit
3241d56ecc
1 changed files with 12 additions and 2 deletions
14
setup.py
14
setup.py
|
@ -45,6 +45,16 @@ author_email = 'micah@micahflee.com'
|
||||||
url = 'https://github.com/micahflee/onionshare'
|
url = 'https://github.com/micahflee/onionshare'
|
||||||
license = 'GPL v3'
|
license = 'GPL v3'
|
||||||
keywords = 'onion, share, onionshare, tor, anonymous, web server'
|
keywords = 'onion, share, onionshare, tor, anonymous, web server'
|
||||||
|
classifiers = [
|
||||||
|
"Programming Language :: Python :: 3",
|
||||||
|
"Framework :: Flask",
|
||||||
|
"Topic :: Communications :: File Sharing",
|
||||||
|
"Topic :: Security :: Cryptography",
|
||||||
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
||||||
|
"Intended Audience :: End Users/Desktop",
|
||||||
|
"Operating System :: OS Independent",
|
||||||
|
"Environment :: Web Environment"
|
||||||
|
]
|
||||||
data_files=[
|
data_files=[
|
||||||
(os.path.join(sys.prefix, 'share/applications'), ['install/onionshare.desktop']),
|
(os.path.join(sys.prefix, 'share/applications'), ['install/onionshare.desktop']),
|
||||||
(os.path.join(sys.prefix, 'share/metainfo'), ['install/onionshare.appdata.xml']),
|
(os.path.join(sys.prefix, 'share/metainfo'), ['install/onionshare.appdata.xml']),
|
||||||
|
@ -63,8 +73,8 @@ if platform.system() != 'OpenBSD':
|
||||||
setup(
|
setup(
|
||||||
name='onionshare', version=version,
|
name='onionshare', version=version,
|
||||||
description=description, long_description=long_description,
|
description=description, long_description=long_description,
|
||||||
author=author, author_email=author_email,
|
author=author, author_email=author_email, maintainer=author, maintainer_email=author_email,
|
||||||
url=url, license=license, keywords=keywords,
|
url=url, license=license, keywords=keywords, classifiers=classifiers,
|
||||||
packages=[
|
packages=[
|
||||||
'onionshare',
|
'onionshare',
|
||||||
'onionshare.web',
|
'onionshare.web',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue