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,11 +17,11 @@ setup(name="eris",
packages=["eris"], packages=["eris"],
py_modules=["lscolors", "sorted_collection"], py_modules=["lscolors", "sorted_collection"],
package_data={"eris": ["LS_COLORS.sh", "tools.toml"]}, package_data={"eris": ["LS_COLORS.sh", "tools.toml"]},
entry_points={"console_scripts": ["eris=eris.__main__:entry_point", entry_points={"console_scripts":
"eris-worker=eris.worker:main", ["eris=eris.__main__:entry_point", "eris-worker=eris.worker:main",
"eris-webserver=eris.webserver:main", "eris-webserver=eris.webserver:main", "pydoc_color=eris.pydoc_color:main"]},
"pydoc_color=eris.pydoc_color:main"]}, install_requires=[
install_requires=["pyinotify==0.9.6", "pygments==2.10.0", "docopt==0.6.2", "pillow==8.4.0", "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", "toml==0.10.2", "decorator==5.1.0", "pexpect==4.8.0",
"termstr @ git+https://github.com/ahamilton/eris@2021.12.20#subdirectory=termstr", "termstr @ git+https://github.com/ahamilton/eris@2021.12.20#subdirectory=termstr",
"fill3 @ git+https://github.com/ahamilton/eris@2021.12.20#subdirectory=fill3", "fill3 @ git+https://github.com/ahamilton/eris@2021.12.20#subdirectory=fill3",

View file

@ -15,4 +15,5 @@ setup(name="fill3",
author_email="and_hamilton@yahoo.com", author_email="and_hamilton@yahoo.com",
license="Artistic 2.0", license="Artistic 2.0",
packages=["fill3"], 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"])