Skip to content

Commit

Permalink
v0.0.2: better setup() metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-williams committed May 21, 2024
1 parent e05c1d2 commit b1e0659
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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",
],
)

0 comments on commit b1e0659

Please sign in to comment.