29 lines
1.1 KiB
Python
Executable file
29 lines
1.1 KiB
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="eris",
|
|
version="v2022.12.06",
|
|
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",
|
|
python_requires=">=3.11",
|
|
packages=["eris"],
|
|
py_modules=["sorted_collection"],
|
|
package_data={"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"]},
|
|
install_requires=[
|
|
"pyinotify==0.9.6", "pygments==2.16.1", "docopt==0.6.2", "pillow==10.0.0", "toml==0.10.2",
|
|
"decorator==5.1.1", "pexpect==4.8.0", f"fill3 @ file://{REPO_PATH}/fill3",
|
|
f"termstr @ file://{REPO_PATH}/termstr", f"lscolors @ file://{REPO_PATH}/lscolors"])
|