Return to monorepo style.

- The python projects are all versioned together by the git tag.
This commit is contained in:
Andrew Hamilton 2021-12-21 21:39:38 +10:00
parent 0416d4e29d
commit 343f849e7b
2 changed files with 8 additions and 7 deletions

View file

@ -1,12 +1,14 @@
#!/usr/bin/env python3.9
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
REPO_PATH = os.path.dirname(os.getcwd())
setup(name="eris",
version="2021.12.20",
description=("Eris maintains an up-to-date set of reports for every file in a codebase."),
@ -21,8 +23,6 @@ setup(name="eris",
["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"])
"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", f"fill3 @ file://{REPO_PATH}/fill3",
f"termstr @ file://{REPO_PATH}/termstr", f"lscolors @ file://{REPO_PATH}/lscolors"])

View file

@ -1,12 +1,14 @@
#!/usr/bin/env python3.9
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
REPO_PATH = os.path.dirname(os.getcwd())
setup(name="fill3",
version="2021.12.20",
description=("Fill3 provides basic widgets for a tui."),
@ -15,5 +17,4 @@ 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=[f"termstr @ file://{REPO_PATH}/termstr"])