Extract lscolors into its own python project.

This commit is contained in:
Andrew Hamilton 2021-11-06 23:58:17 +10:00
parent 895470b01b
commit a724d234c3
6 changed files with 20 additions and 5 deletions

16
lscolors/setup.py Executable file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env python3.9
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name="lscolors",
version="2021.10.18",
description=("Give coloring for file types as in the ls command."),
url="https://github.com/ahamilton/eris",
author="Andrew Hamilton",
license="Artistic 2.0",
py_modules=["lscolors"])