Add basic project files for an empty project

This commit is contained in:
Andrew Miner
2019-07-05 20:39:07 -06:00
parent 0a6ed88fef
commit cb5a4e42bf
10 changed files with 511 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
"""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=[
"pycurses",
],
package_dir={"": "src"},
install_requires=[
],
)