forked from localstack-samples/serverless-quiz-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
32 additions
and
125 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ develop-eggs/ | |
dist/ | ||
.env | ||
.venv | ||
*.egg-info/ | ||
env/ | ||
venv/ | ||
__pycache__ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[metadata] | ||
name = serverless-quiz-app | ||
version = 0.0.1 | ||
url = localstack.cloud | ||
author = LocalStack Team | ||
author_email = [email protected] | ||
description = LocalStack Quiz App | ||
license = Proprietary | ||
classifiers = | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
License :: Other/Proprietary License | ||
Topic :: Software Development :: Testing | ||
|
||
[options] | ||
zip_safe = False | ||
packages = find_namespace: | ||
install_requires = | ||
localstack | ||
requests | ||
boto3 | ||
pytest | ||
localstack-sdk-python | ||
awscli-local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env python | ||
from setuptools import setup | ||
|
||
setup() |