Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
art3m1s-dev authored Nov 26, 2021
1 parent 7c5d4a3 commit 26af203
Show file tree
Hide file tree
Showing 15 changed files with 57 additions and 0 deletions.
5 changes: 5 additions & 0 deletions templates/FLASK/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include LICENSE
include flaskr/schema.sql
graft flaskr/static
graft flaskr/templates
global-exclude *.pyc
1 change: 1 addition & 0 deletions templates/FLASK/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# __init__.py
1 change: 1 addition & 0 deletions templates/FLASK/auth.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# auth.py
1 change: 1 addition & 0 deletions templates/FLASK/blog.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# blog.py
1 change: 1 addition & 0 deletions templates/FLASK/db.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# db.py
12 changes: 12 additions & 0 deletions templates/FLASK/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>

</body>
</html>
1 change: 1 addition & 0 deletions templates/FLASK/schema.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--schema.sql
28 changes: 28 additions & 0 deletions templates/FLASK/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
from setuptools import find_packages, setup

setup( # replace all <> with your own metadata
name = '<name of tool>',
version = '0.0.1',
author = '<name of author>',
author_email = '<email of author>',
license = '<the license you chose>',
description = '<short description for the tool>',
url = '<github url where the tool code will remain>',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
python_requires='>= <version after which it will work>',
install_requires=[
'flask',
],
classifiers=[
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
# Replace <cmd> with the command you want to use to call your tool
# and set main:main to be the
entry_points = '''
[console_scripts]
cmd=main:main
'''
)
1 change: 1 addition & 0 deletions templates/FLASK/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/*style.css*/
1 change: 1 addition & 0 deletions templates/FLASK/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# conftest.py
1 change: 1 addition & 0 deletions templates/FLASK/tests/data.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--data.sql
1 change: 1 addition & 0 deletions templates/FLASK/tests/test_auth.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# test_auth.py
1 change: 1 addition & 0 deletions templates/FLASK/tests/test_blog.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# test_blog.py
1 change: 1 addition & 0 deletions templates/FLASK/tests/test_db.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# test_db.py
1 change: 1 addition & 0 deletions templates/FLASK/tests/test_factory.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# test_factory.py

0 comments on commit 26af203

Please sign in to comment.