Extract lscolors into its own python project.
This commit is contained in:
parent
895470b01b
commit
a724d234c3
6 changed files with 20 additions and 5 deletions
16
lscolors/setup.py
Executable file
16
lscolors/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="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"])
|
||||
Loading…
Add table
Add a link
Reference in a new issue