eris/lscolors/setup.py

18 lines
436 B
Python
Raw Normal View History

#!/usr/bin/env python3.10
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",
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",
license="Artistic 2.0",
py_modules=["lscolors"])