16 lines
388 B
Python
Executable file
16 lines
388 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",
|
|
license="Artistic 2.0",
|
|
packages=["termstr"])
|