Add basic project files for an empty project
This commit is contained in:
@@ -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=[
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user