How to install and use my custom flask application package?

I have built a package from my flask application, and I would like my flask app package still working after being installed, but it does not. You can find the source code in github

Steps to produce

  1. Build a package from my flask app: python setup.py sdist bdist_wheel
  2. Copy the built package and install it in another project: pip install flask_app-0.0.1-py2-none-any.whl
  3. Route to my flask app: url: /appView, result in Not Found.

Therefore, is any way or configuration I can install and use my flask application package? Thanks

Add Comment
0 Answer(s)

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.