2021-05-18 20:39:25 +10:00
|
|
|
#!/usr/bin/env python3.9
|
2017-06-27 14:03:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
except ImportError:
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
|
2018-09-17 23:59:38 +10:00
|
|
|
setup(name="eris",
|
2021-10-24 01:52:53 +10:00
|
|
|
version="2021.10.18",
|
2018-09-17 23:59:38 +10:00
|
|
|
description=("Eris maintains an up-to-date set of reports for every"
|
2017-06-27 14:03:32 +01:00
|
|
|
" file in a codebase."),
|
2018-09-17 23:59:38 +10:00
|
|
|
url="https://github.com/ahamilton/eris",
|
2017-06-27 14:03:32 +01:00
|
|
|
author="Andrew Hamilton",
|
|
|
|
|
license="Artistic 2.0",
|
2021-04-10 22:11:38 +10:00
|
|
|
packages=["eris"],
|
2018-09-17 23:59:38 +10:00
|
|
|
package_data={"eris": ["LS_COLORS.sh", "tools.toml"]},
|
2017-06-27 14:03:32 +01:00
|
|
|
entry_points={"console_scripts":
|
2018-09-17 23:59:38 +10:00
|
|
|
["eris=eris.__main__:entry_point",
|
|
|
|
|
"eris-worker=eris.worker:main",
|
2019-09-04 15:22:17 +10:00
|
|
|
"eris-webserver=eris.webserver:main",
|
|
|
|
|
"pydoc_color=eris.pydoc_color:main"]})
|