Skip to content

Commit

Permalink
SwaANSI 0.0.4 - Added setup.py for publishing.
Browse files Browse the repository at this point in the history
  • Loading branch information
swajime committed Jul 1, 2020
1 parent 90cb640 commit 06175c6
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# swa-ansi
Enable setting colors and attributes on text strings
# SwaANSI

<p>Enable wrapping text with color and attributes per ANSI escape sequences.</p>
![Python package](https://github.com/swajime/ansi/workflows/Python%20package/badge.svg)
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
)

0 comments on commit 06175c6

Please sign in to comment.