This reverts commit a059ae8192.
Python3.12 is not in the stable distros yet.
21 lines
602 B
Python
Executable file
21 lines
602 B
Python
Executable file
#!/usr/bin/env python3.11
|
|
|
|
|
|
import os
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
|
|
REPO_PATH = os.path.dirname(os.getcwd())
|
|
setup(name="lscolors",
|
|
version="v2024.07.11",
|
|
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",
|
|
packages=["lscolors"],
|
|
package_data={"lscolors": ["LS_COLORS.sh"]},
|
|
install_requires=[f"termstr @ file://{REPO_PATH}/termstr"])
|