Guest User

pyproject.toml

a guest
Oct 28th, 2021
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. [tool.poetry]
  2. name = "xxx"
  3. version = "1.0.0"
  4. description = "xxxxx"
  5. authors = ["XXX xxx <[email protected]>"]
  6. license = "MIT"
  7.  
  8. [tool.poetry.dependencies]
  9. python = "^3.8"
  10. pip = "*"
  11. setuptools = "*"
  12. wheel = "*"
  13. scikit-learn = "*"
  14. scikit-image = "*"
  15. dash = "*"
  16. Flask = "*"
  17. Flask-WTF = "*"
  18. WTForms = "*"
  19. wtforms-validators = "*"
  20. Flask-Login = "*"
  21. jwt = "*"
  22. Flask-SQLAlchemy = "*"
  23. Flask-Mail = "*"
  24. python-dotenv = "*"
  25. pandas = "*"
  26. numpy = "*"
  27. plotly = "*"
  28. CairoSVG = "*"
  29. Pillow = "*"
  30. joblib = "*"
  31. dash-core-components = "*"
  32. dash-bootstrap-components = "<1"
  33. Flask-Migrate = "*"
  34. Flask-Session = "*"
  35. pytesseract = "*"
  36. pdf2image = "*"
  37. spacy = "*"
  38. thefuzz = "*"
  39. email-validator = "*"
  40. dash-html-components = "*"
  41. gunicorn = "*"
  42. opencv-python-headless = "*"
  43. dvc = {extras = ["ssh"], version = "^2.8.2"}
  44.  
  45. [tool.poetry.dev-dependencies]
  46. ipykernel = "*"
  47. pylint = "*"
  48. pylint-flask-sqlalchemy = "*"
  49. pylint-flask = "*"
  50. black = "*"
  51. unittest2 = "*"
  52.  
  53. [build-system]
  54. requires = ["poetry-core>=1.0.0"]
  55. build-backend = "poetry.core.masonry.api"
  56.  
Add Comment
Please, Sign In to add comment