eris/lscolors/setup.py
Andrew Hamilton e01e2351b2 Make installable on Ubuntu Jammy
- Move to python3.10
- Move to ruby3.0
2022-04-23 17:49:49 +10:00

17 lines
436 B
Python
Executable file

#!/usr/bin/env python3.10
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name="lscolors",
version="v2022.04.18",
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"])