18 lines
481 B
Python
Executable file
18 lines
481 B
Python
Executable file
#!/usr/bin/env python3.10
|
|
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
|
|
setup(name="termstr",
|
|
version="v2022.08.31",
|
|
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"],
|
|
install_requires=["cwcwidth==0.1.5"])
|