diff --git a/README.md b/README.md index b43c817..50ac1d6 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ -# swa-ansi -Enable setting colors and attributes on text strings +# SwaANSI + +
Enable wrapping text with color and attributes per ANSI escape sequences.
+![Python package](https://github.com/swajime/ansi/workflows/Python%20package/badge.svg) \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8939176 --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="SwaANSI-pkg-swajime", + version="0.0.4", + author="John Simpson", + author_email="john@swajime.com", + description="Enable wrapping text with color and attributes.", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/swajime/ansi", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python", + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", + "Operating System :: OS Independent", + ], + python_requires='>=2.7', +) \ No newline at end of file