Skip to content

Commit

Permalink
added models
Browse files Browse the repository at this point in the history
  • Loading branch information
qaqaqaqaowh committed Apr 8, 2020
1 parent cd96959 commit 478ac79
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
setup(
name = 'ftg',
packages = find_packages(),
version = '0.9',
version = '1.0',
license='MIT',
description = 'A generator for a flask app template',
author = 'Nicholas Ong Wei Harn',
author_email = '[email protected]',
url = 'https://github.com/qaqaqaqaowh/ftg',
download_url = 'https://github.com/qaqaqaqaowh/ftg/archive/0.9.tar.gz',
download_url = 'https://github.com/qaqaqaqaowh/ftg/archive/1.0.tar.gz',
keywords = ['flask', 'template', 'generate'],
include_package_data = True,
install_requires=[
Expand Down
1 change: 1 addition & 0 deletions src/templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ def gen_template(name):
copy(f, name)
copytree(join(static_path, "web"), web_path)
copytree(join(static_path, "api"), api_path)
copytree(join(static_path, "models"), name)
os.makedirs(join(api_path, "blueprints"))
os.makedirs(join(web_path, "blueprints"))
write_file(join(name, ".gitignore"), gitignore(name))
Expand Down

0 comments on commit 478ac79

Please sign in to comment.