diff options
author | Wolfgang Müller | 2021-05-06 14:37:39 +0200 |
---|---|---|
committer | Wolfgang Müller | 2021-05-06 15:52:47 +0200 |
commit | e742202f631338f78fac48f7a01ce5f5673d2e02 (patch) | |
tree | 56f9f5dee5855dd91a1c6431670828469464875d /setup.py | |
parent | 68a8bca166bff2163542a94437063e5fda6ea09b (diff) | |
download | quarg-e742202f631338f78fac48f7a01ce5f5673d2e02.tar.gz |
setup.py: Change description slightly and add more metadata
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -5,7 +5,13 @@ setuptools.setup( version="0.0.1", author="Wolfgang Müller", author_email="wolf@oriole.systems", - description="Search Quassel logs for matching messages", + description="Search Quassel logs for matching messages and print them", + url="https://git.oriole.systems/quarg", + classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], packages=setuptools.find_packages(), python_requires=">=3.8", |