Extracted fill3 into its own python project.
This commit is contained in:
parent
c018e9f7d4
commit
240e908634
7 changed files with 20 additions and 1 deletions
16
fill3/setup.py
Executable file
16
fill3/setup.py
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
#!/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"])
|
||||
Loading…
Add table
Add a link
Reference in a new issue