Extracted termstr into its own python project.

This commit is contained in:
Andrew Hamilton 2021-11-04 21:37:38 +10:00
parent 31d8cbf4e3
commit c018e9f7d4
7 changed files with 21 additions and 3 deletions

16
termstr/setup.py Executable file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env python3.9
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name="termstr",
version="2021.10.18",
description=("Termstr provides strings with extra terminal styling."),
url="https://github.com/ahamilton/eris",
author="Andrew Hamilton",
license="Artistic 2.0",
packages=["termstr"])