2021-11-04 22:40:15 +10:00
|
|
|
#!/usr/bin/env python3.9
|
|
|
|
|
|
|
|
|
|
|
2021-12-21 21:39:38 +10:00
|
|
|
import os
|
2021-11-04 22:40:15 +10:00
|
|
|
try:
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
except ImportError:
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
|
2021-12-21 21:39:38 +10:00
|
|
|
REPO_PATH = os.path.dirname(os.getcwd())
|
2021-11-04 22:40:15 +10:00
|
|
|
setup(name="fill3",
|
2022-04-18 00:26:49 +10:00
|
|
|
version="v2022.04.18",
|
2021-11-04 22:40:15 +10:00
|
|
|
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",
|
2021-11-04 22:40:15 +10:00
|
|
|
license="Artistic 2.0",
|
2021-12-20 14:59:07 +10:00
|
|
|
packages=["fill3"],
|
2021-12-30 23:33:37 +10:00
|
|
|
install_requires=[f"termstr @ file://{REPO_PATH}/termstr"])
|