Extracted termstr into its own python project.
This commit is contained in:
parent
31d8cbf4e3
commit
c018e9f7d4
7 changed files with 21 additions and 3 deletions
16
termstr/setup.py
Executable file
16
termstr/setup.py
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
#!/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"])
|
||||
Loading…
Add table
Add a link
Reference in a new issue