diff --git a/MANIFEST.in b/MANIFEST.in index 090c27c..4447061 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ -recursive-include flask_template * +recursive-include flask_create *.py include LICENSE include README.md diff --git a/README.md b/README.md index 65e4da4..cf2240a 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,21 @@ To int db run this from outside src(i.e., root project folder): ##### Note : - The default config is provided for dev. Production config can be modified by user in config.py + +# Build Instructions + +Build a python package: + +``` +python3 -m venv venv +source venv/bin/activate + +pip install wheel + +python setup.py bdist_wheel +# Produces a .whl file in dist/ +``` + # Note for Contributing We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's: diff --git a/setup.py b/setup.py index ebab99c..e10cc76 100644 --- a/setup.py +++ b/setup.py @@ -46,6 +46,4 @@ 'console_scripts': ['flask-create=flask_create.create:create'], }, include_package_data=True, - ) -