eris/termstr/setup.py
Andrew Hamilton ca38a5e7c1 Make pip install work.
- Having trouble with recursive dependencies not being installed.
- Try using install_requires in setup.py instead of requirements.txt files.
- Putting back version numbers.
2021-12-20 15:03:25 +10:00

18 lines
479 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.12.16",
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"])