eris/lscolors/setup.py
Andrew Hamilton 5da5f07e0a Storing less versions if possible.
- Trying to do without versions in setup.py and requirements.txt.
- The git tags define the versions.
- The seperate python packages aren't independant atm.
- Eris uses the latest versions of its dependencies, not pinned
  older ones.
2021-12-16 20:39:28 +10:00

16 lines
406 B
Python
Executable file

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