Extracted fill3 into its own python project.

This commit is contained in:
Andrew Hamilton 2021-11-04 22:40:15 +10:00
parent c018e9f7d4
commit 240e908634
7 changed files with 20 additions and 1 deletions

View file

@ -6,3 +6,4 @@ toml==0.10.2
decorator==5.1.0
pexpect==4.8.0
termstr==2021.10.18
fill3==2021.10.18

View file

@ -14,7 +14,7 @@ setup(name="eris",
url="https://github.com/ahamilton/eris",
author="Andrew Hamilton",
license="Artistic 2.0",
packages=["eris", "fill3"],
packages=["eris"],
py_modules=["lscolors", "sorted_collection"],
package_data={"eris": ["LS_COLORS.sh", "tools.toml"]},
entry_points={"console_scripts":

1
fill3/requirements.txt Normal file
View file

@ -0,0 +1 @@
termstr==2021.10.18

16
fill3/setup.py Executable file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env python3.9
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name="fill3",
version="2021.10.18",
description=("Fill3 provides basic widgets for a tui."),
url="https://github.com/ahamilton/eris",
author="Andrew Hamilton",
license="Artistic 2.0",
packages=["fill3"])

View file

@ -5,5 +5,6 @@ set -e
python3.9 -m pip install -r ./termstr/requirements.txt $1 ./termstr
python3.9 -m pip install -r ./fill3/requirements.txt $1 ./fill3
python3.9 -m pip install -r ./eris/requirements.txt $1 ./eris
./install-tools