2022-04-23 17:36:22 +10:00
|
|
|
#!/usr/bin/env python3.10
|
2021-11-06 23:58:17 +10:00
|
|
|
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
except ImportError:
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setup(name="lscolors",
|
2022-04-18 00:26:49 +10:00
|
|
|
version="v2022.04.18",
|
2021-11-06 23:58:17 +10:00
|
|
|
description=("Give coloring for file types as in the ls command."),
|
|
|
|
|
url="https://github.com/ahamilton/eris",
|
|
|
|
|
author="Andrew Hamilton",
|
2021-11-07 00:01:49 +10:00
|
|
|
author_email="and_hamilton@yahoo.com",
|
2021-11-06 23:58:17 +10:00
|
|
|
license="Artistic 2.0",
|
|
|
|
|
py_modules=["lscolors"])
|