17 lines
435 B
Python
Executable file
17 lines
435 B
Python
Executable file
#!/usr/bin/env python3.9
|
|
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
|
|
setup(name="lscolors",
|
|
version="v2022.01.24",
|
|
description=("Give coloring for file types as in the ls command."),
|
|
url="https://github.com/ahamilton/eris",
|
|
author="Andrew Hamilton",
|
|
author_email="and_hamilton@yahoo.com",
|
|
license="Artistic 2.0",
|
|
py_modules=["lscolors"])
|