2023-09-10 21:03:17 +10:00
|
|
|
#!/usr/bin/env python3.11
|
2021-11-06 23:58:17 +10:00
|
|
|
|
|
|
|
|
|
2022-05-11 11:11:37 +10:00
|
|
|
import os
|
2021-11-06 23:58:17 +10:00
|
|
|
try:
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
except ImportError:
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
|
2022-05-11 11:11:37 +10:00
|
|
|
REPO_PATH = os.path.dirname(os.getcwd())
|
2021-11-06 23:58:17 +10:00
|
|
|
setup(name="lscolors",
|
2023-09-18 02:17:20 +10:00
|
|
|
version="v2023.09.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",
|
2022-05-11 11:11:37 +10:00
|
|
|
packages=["lscolors"],
|
|
|
|
|
package_data={"lscolors": ["LS_COLORS.sh"]},
|
|
|
|
|
install_requires=[f"termstr @ file://{REPO_PATH}/termstr"])
|