This commit is contained in:
BarsTiger
2021-11-22 21:44:37 +02:00
commit ee132d3021
5 changed files with 251 additions and 0 deletions

14
setup.py Normal file
View File

@@ -0,0 +1,14 @@
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="ezztui",
version="1.0.0",
scripts=["ezztui"],
author="BarsTiger",
description="Easy TextUI creating package",
long_description=long_description,
)