eris/fill3/setup.py

20 lines
536 B
Python
Raw Normal View History

#!/usr/bin/env python3.11
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name="fill3",
2024-12-07 23:23:08 +10:00
version="v2024.12.07",
description=("Fill3 provides basic widgets for a tui."),
url="https://github.com/ahamilton/eris",
author="Andrew Hamilton",
2021-11-07 00:01:49 +10:00
author_email="and_hamilton@yahoo.com",
license="Artistic 2.0",
packages=["fill3"],
2024-12-07 23:23:08 +10:00
install_requires=["termstr @ git+https://gitlab.com/ahamilton/eris@v2024.12.07#subdirectory=termstr"])