1
0
Fork 0
mirror of https://github.com/shouptech/flask-tutorial.git synced 2026-02-03 07:29:42 +00:00

Add setup files

This commit is contained in:
Emma 2018-11-01 20:01:32 -06:00
parent fc1af0edf2
commit f300a34a04
2 changed files with 16 additions and 0 deletions

4
MANIFEST.in Normal file
View file

@ -0,0 +1,4 @@
include flaskr/schema.sql
graft flaskr/static
graft flaskr/templates
global-exclude *.pyc

12
setup.py Normal file
View file

@ -0,0 +1,12 @@
from setuptools import find_packages, setup
setup(
name='flaskr',
version='1.0.0',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'flask',
],
)