13 lines
267 B
Python
13 lines
267 B
Python
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
|
|
) |