17 lines
388 B
Python
17 lines
388 B
Python
|
|
#!/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"])
|