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="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"])