stc

a simple time card webapp
git clone _git@git.brennen.work:stc.git
Log | Files | Refs | README

commit 78abe5d12fcb4c1b614a2a331fdb7bd2f8a57079
parent 8e8a288ca5ca1592c54fd3c42263a13eb9c095d4
Author: Nikolas Mazur <nikolas@pop-os.localdomain>
Date:   Fri, 23 Dec 2022 11:43:06 -0700

Add setup

Diffstat:
Asetup.py | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/setup.py b/setup.py @@ -0,0 +1,10 @@ +from setuptools import setup + +setup( + name='stc', + packages=['stc'], + include_package_data=True, + install_requires=[ + 'flask', + ], +) +\ No newline at end of file