-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unnecessary dependency on flask #47
Comments
That is a valid point. My reasoning for not removing Line 31 in f8cbeb8
I would not mind having a And, I am happy you liked the project! Please feel free to contribute! |
I tried to find any relevant PEP to identify what is the recommended way of using PEP 518 talks about minimum build requirement in setup.py (which this follows). I think the discussion is valid and I will be happy to create |
From what I see,
flask
is only used in the example filemodelAPI.py
inRESTAPI
.The core code is not at all dependent on
flask
, however it is a required dependencycontextualSpellCheck/requirements.txt
Line 1 in f8cbeb8
I think it would be better to just add note in
modelAPI.py
to install flask and remove it fromrequirements.txt
.Thanks for the interesting project.
The text was updated successfully, but these errors were encountered: