Coding style.

- Fix line length.
This commit is contained in:
Andrew Hamilton 2021-12-21 20:48:48 +10:00
parent cc69e00889
commit 0416d4e29d
2 changed files with 11 additions and 10 deletions

View file

@ -17,12 +17,12 @@ setup(name="eris",
packages=["eris"],
py_modules=["lscolors", "sorted_collection"],
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"]},
install_requires=["pyinotify==0.9.6", "pygments==2.10.0", "docopt==0.6.2", "pillow==8.4.0",
"toml==0.10.2", "decorator==5.1.0", "pexpect==4.8.0",
"termstr @ git+https://github.com/ahamilton/eris@2021.12.20#subdirectory=termstr",
"fill3 @ git+https://github.com/ahamilton/eris@2021.12.20#subdirectory=fill3",
"lscolors @ git+https://github.com/ahamilton/eris@2021.12.20#subdirectory=lscolors"])
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.10.0", "docopt==0.6.2", "pillow==8.4.0",
"toml==0.10.2", "decorator==5.1.0", "pexpect==4.8.0",
"termstr @ git+https://github.com/ahamilton/eris@2021.12.20#subdirectory=termstr",
"fill3 @ git+https://github.com/ahamilton/eris@2021.12.20#subdirectory=fill3",
"lscolors @ git+https://github.com/ahamilton/eris@2021.12.20#subdirectory=lscolors"])

View file

@ -15,4 +15,5 @@ setup(name="fill3",
author_email="and_hamilton@yahoo.com",
license="Artistic 2.0",
packages=["fill3"],
install_requires=["termstr @ git+https://github.com/ahamilton/eris@2021.12.20#subdirectory=termstr"])
install_requires=[
"termstr @ git+https://github.com/ahamilton/eris@2021.12.20#subdirectory=termstr"])