eris/lscolors/setup.py

22 lines
602 B
Python
Raw Normal View History

#!/usr/bin/env python3.10
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
REPO_PATH = os.path.dirname(os.getcwd())
setup(name="lscolors",
2022-04-30 13:37:52 +10:00
version="v2022.04.30",
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",
packages=["lscolors"],
package_data={"lscolors": ["LS_COLORS.sh"]},
install_requires=[f"termstr @ file://{REPO_PATH}/termstr"])