summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2018-12-19 15:18:42 -0800
committerGitHub <noreply@github.com>2018-12-19 15:18:42 -0800
commit3241d56ecc1dfa339ea07bf844eb6a8d5f3d5fba (patch)
tree48e093542037f24d7edc8b6f4406f8d9073d41ac
parent80becc73fc08d8f11da08623047ac54fb576c305 (diff)
parent494ab53b07d1ede3730cf9f6288e94515fe4f537 (diff)
downloadonionshare-3241d56ecc1dfa339ea07bf844eb6a8d5f3d5fba.tar.gz
onionshare-3241d56ecc1dfa339ea07bf844eb6a8d5f3d5fba.zip
Merge pull request #849 from ageis/add-classifiers
Add classifiers
-rw-r--r--setup.py14
1 files changed, 12 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 86b71f82..4169297b 100644
--- a/setup.py
+++ b/setup.py
@@ -45,6 +45,16 @@ author_email = 'micah@micahflee.com'
url = 'https://github.com/micahflee/onionshare'
license = 'GPL v3'
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=[
(os.path.join(sys.prefix, 'share/applications'), ['install/onionshare.desktop']),
(os.path.join(sys.prefix, 'share/metainfo'), ['install/onionshare.appdata.xml']),
@@ -63,8 +73,8 @@ if platform.system() != 'OpenBSD':
setup(
name='onionshare', version=version,
description=description, long_description=long_description,
- author=author, author_email=author_email,
- url=url, license=license, keywords=keywords,
+ author=author, author_email=author_email, maintainer=author, maintainer_email=author_email,
+ url=url, license=license, keywords=keywords, classifiers=classifiers,
packages=[
'onionshare',
'onionshare.web',