eris/fill3/setup.py

17 lines
370 B
Python
Raw Normal View History

#!/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"])