From 18717fd591209423f24f3537389221d508a9713d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cllar=20Seerme?= Date: Fri, 22 Sep 2023 12:01:02 +0300 Subject: [PATCH] build(setup.py): add 'readme', 'python_requires', and new classifiers --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a8aa143..e7a4280 100644 --- a/setup.py +++ b/setup.py @@ -3,16 +3,22 @@ setup( name="powerline-tailscale", description="A Powerline segment for showing the status of Tailscale", - version="1.0.0", + readme="README.md", + version="1.0.1", keywords="powerline tailscale", license="MIT", author="Üllar Seerme", url="https://github.com/usrme/powerline-tailscale", packages=["powerline_tailscale"], + python_requires=">=3.9", classifiers=[ "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Topic :: Terminals", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], )