aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Vilcans <martin@librador.com>2019-02-21 22:00:16 +0100
committerMartin Vilcans <martin@librador.com>2019-02-21 22:00:35 +0100
commit2bce2c2ae4a776ac51c2ac96eeb44e8431f78009 (patch)
tree0bf14c6837b5add865466e58a5ded50a31d19564
parent535d8d69b8844cfdc1b3523737be69a78b7e3954 (diff)
downloadscreenplain-2bce2c2ae4a776ac51c2ac96eeb44e8431f78009.tar.gz
Add classifiers, URLs, license to setup.py
-rwxr-xr-xsetup.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index cca6820..4dcdb90 100755
--- a/setup.py
+++ b/setup.py
@@ -9,6 +9,11 @@ setup(
author='Martin Vilcans',
author_email='screenplain@librador.com',
url='http://www.screenplain.com/',
+ project_urls={
+ 'Web Page': 'http://www.screenplain.com/',
+ 'Source': 'https://github.com/vilcans/screenplain',
+ },
+ license='MIT',
install_requires=[
'six',
],
@@ -25,5 +30,11 @@ setup(
},
scripts=[
'bin/screenplain'
- ]
+ ],
+ classifiers=[
+ 'Programming Language :: Python :: 2',
+ 'Programming Language :: Python :: 3',
+ 'License :: OSI Approved :: MIT License',
+ 'Operating System :: OS Independent',
+ ],
)