20 lines
533 B
Python
Executable file
20 lines
533 B
Python
Executable file
#!/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="v2022.01.18",
|
|
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=[f"termstr @ file://{REPO_PATH}/termstr"])
|