2022-04-23 17:36:22 +10:00
|
|
|
#!/usr/bin/env python3.10
|
2021-11-04 21:37:38 +10:00
|
|
|
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
except ImportError:
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setup(name="termstr",
|
2022-04-25 16:27:31 +10:00
|
|
|
version="v2022.04.25",
|
2021-11-04 21:37:38 +10:00
|
|
|
description=("Termstr provides strings with extra terminal styling."),
|
|
|
|
|
url="https://github.com/ahamilton/eris",
|
|
|
|
|
author="Andrew Hamilton",
|
2021-11-07 00:01:49 +10:00
|
|
|
author_email="and_hamilton@yahoo.com",
|
2021-11-04 21:37:38 +10:00
|
|
|
license="Artistic 2.0",
|
2021-12-20 14:59:07 +10:00
|
|
|
py_modules=["termstr"],
|
|
|
|
|
install_requires=["cwcwidth==0.1.5"])
|