Used test-distributions to fix the installation.

- Correctly using our urwid.
- LS_COLORS needed to be in the package.
- Didn't need to use pip3.
This commit is contained in:
Andrew Hamilton 2017-06-28 09:07:40 +01:00
parent 9f00b3ba3e
commit 0080db66d4
8 changed files with 15 additions and 19 deletions

View file

@ -17,7 +17,8 @@ setup(name="vigil",
url="https://github.com/ahamilton/vigil",
author="Andrew Hamilton",
license="Artistic 2.0",
packages=["vigil"],
packages=["vigil", "vigil.urwid"],
package_data={"vigil": ["LS_COLORS.sh"]},
entry_points={"console_scripts":
["vigil=vigil.__main__:entry_point",
"vigil-worker=vigil.worker:main"]})