- All files are licensed by the LICENSE file at root. - Updated the license to 2021. - Have kept the license in LS_COLORS since its 3rd party.
23 lines
746 B
Python
Executable file
23 lines
746 B
Python
Executable file
#!/usr/bin/env python3.8
|
|
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
|
|
setup(name="eris",
|
|
version="20.04",
|
|
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",
|
|
license="Artistic 2.0",
|
|
packages=["eris"],
|
|
package_data={"eris": ["LS_COLORS.sh", "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"]})
|