eris/fill3/setup.py
Andrew Hamilton 7786c8b8b5 Experimenting with dependency_links.
- Is dependency_links needed for recursive dependencies?
- Need to checkin to really see.
2021-12-20 15:14:55 +10:00

19 lines
631 B
Python
Executable file

#!/usr/bin/env python3.9
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name="fill3",
version="2021.12.16",
description=("Fill3 provides basic widgets for a tui."),
url="https://github.com/ahamilton/eris",
author="Andrew Hamilton",
author_email="and_hamilton@yahoo.com",
license="Artistic 2.0",
packages=["fill3"],
install_requires=["termstr @ git+https://github.com/ahamilton/eris@2021.12.16#subdirectory=termstr"],
dependency_links=["termstr @ git+https://github.com/ahamilton/eris@2021.12.16#subdirectory=termstr"])