From b1e0659785825f535cb156fd8006afba2f067b16 Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Tue, 21 May 2024 16:38:27 -0400 Subject: [PATCH] v0.0.2: better `setup()` metadata --- setup.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d90feab..e82a0bf 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,24 @@ -from setuptools import setup +from setuptools import setup, find_packages setup( name="rtd-cli", - version="0.0.1", + version="0.0.2", + description="Simple CLI wrapper for the Readthedocs REST API", + long_description=open("README.md").read(), + long_description_content_type="text/markdown", + url="https://github.com/runsascoded/rtd.py", + author="Ryan Williams", + author_email="ryan@runsascoded.com", install_requires=open("requirements.txt").read(), entry_points={ "console_scripts": [ "rtd = rtd.main:cli", ], }, + packages=find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], )