Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,8 @@

from setuptools import setup


LONG_DESCRIPTION = """
Python Fire is a library for automatically generating command line interfaces
(CLIs) with a single line of code.

It will turn any Python module, class, object, function, etc. (any Python
component will work!) into a CLI. It's called Fire because when you call Fire(),
it fires off your command.
""".strip()
with open('README.md', 'r') as readme:
LONG_DESCRIPTION = readme.read()

SHORT_DESCRIPTION = """
A library for automatically generating command line interfaces.""".strip()
Expand All @@ -47,6 +40,7 @@
version=VERSION,
description=SHORT_DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type = 'text/markdown',
url=URL,

author='David Bieber',
Expand Down