eris/termstr/setup.py
Andrew Hamilton 2b5d14b87d Coding style.
- Change termstr from a package to a single module, since ColorMap
  no longer exists.
2021-11-11 00:08:32 +10:00

17 lines
435 B
Python
Executable file

#!/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",
author_email="and_hamilton@yahoo.com",
license="Artistic 2.0",
py_modules=["termstr"])