-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,15 @@ | ||
from setuptools import setup | ||
|
||
long_description = "It is recommended to use ouf as shortcut for outputformat import outputformat as ouf\n" | ||
long_description += "Main functions are:\n" | ||
long_description += "* ouf.boxtitle\n" | ||
long_description += "* ouf.linetitle\n" | ||
long_description += "* ouf.bigtitle\n" | ||
long_description += "* ouf.showlist\n" | ||
long_description += "* ouf.bar\n" | ||
long_description += "* ouf.barlist\n" | ||
long_description += "By default, functions print the result\n." | ||
long_description += "You have the alternative to return a string instead, by passing the argument return_str=True\n" | ||
long_description += "(nothing will be printed in this case)." | ||
|
||
setup( | ||
name="outputformat", | ||
packages=["outputformat"], | ||
version="0.1.2", | ||
version="0.1.3", | ||
description="Decorate and beautify output", | ||
long_description=long_description, | ||
long_description="For usage, check https://delestro.com/2022/01/16/outputformat/", | ||
author="Felipe Delestro", | ||
author_email="[email protected]", | ||
url="https://github.com/delestro/outputformat", | ||
download_url="https://github.com/delestro/outputformat/archive/refs/tags/v0.1.2.tar.gz", | ||
download_url="https://github.com/delestro/outputformat/archive/refs/tags/v0.1.3.tar.gz", | ||
license="MIT", | ||
keywords=["output", "print", "decorate", "format", "string", "beautify"], | ||
python_requires=">=3.6", | ||
|