- Renamed tools.toml to eris-tools.toml. - Copy eris-tools.toml into ~/.config if it's not already there. - If the config file changes, results are recalculated.
23 lines
868 B
Python
Executable file
23 lines
868 B
Python
Executable file
#!/usr/bin/env python3.9
|
|
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
|
|
setup(name="eris",
|
|
version="2021.10.18",
|
|
description=("Eris maintains an up-to-date set of reports for every file in a codebase."),
|
|
url="https://github.com/ahamilton/eris",
|
|
author="Andrew Hamilton",
|
|
author_email="and_hamilton@yahoo.com",
|
|
license="Artistic 2.0",
|
|
packages=["eris"],
|
|
py_modules=["lscolors", "sorted_collection"],
|
|
package_data={"eris": ["LS_COLORS.sh", "eris-tools.toml"]},
|
|
entry_points={"console_scripts": ["eris=eris.__main__:entry_point",
|
|
"eris-worker=eris.worker:main",
|
|
"eris-webserver=eris.webserver:main",
|
|
"pydoc_color=eris.pydoc_color:main"]})
|