21 lines
471 B
Python
21 lines
471 B
Python
"""Define the pycursesui package."""
|
|
# Taken from the following sample: https://github.com/pypa/sampleproject/blob/master/setup.py
|
|
|
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
name="pycursesui",
|
|
version="0.0.1",
|
|
description="A python UI framework for command-line applications using curses",
|
|
author="Andrew Miner",
|
|
author_email="[email protected]",
|
|
|
|
packages=[
|
|
"pycursesui",
|
|
],
|
|
package_dir={"": "src"},
|
|
|
|
install_requires=[
|
|
],
|
|
)
|