diff options
author | Martin Vilcans <martin@librador.com> | 2019-02-21 22:00:16 +0100 |
---|---|---|
committer | Martin Vilcans <martin@librador.com> | 2019-02-21 22:00:35 +0100 |
commit | 2bce2c2ae4a776ac51c2ac96eeb44e8431f78009 (patch) | |
tree | 0bf14c6837b5add865466e58a5ded50a31d19564 | |
parent | 535d8d69b8844cfdc1b3523737be69a78b7e3954 (diff) | |
download | screenplain-2bce2c2ae4a776ac51c2ac96eeb44e8431f78009.tar.gz |
Add classifiers, URLs, license to setup.py
-rwxr-xr-x | setup.py | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -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', + ], ) |