pyproject.toml 545 B

123456789101112131415161718192021222324
  1. [tool.poetry]
  2. name = "emporio-vestiario-dashboard"
  3. version = "0.1.0"
  4. description = "Dashoboard to visualize Emporio Vestsiario data"
  5. authors = ["Mattia Tantardini <mattia.tantardini@gmail.com>"]
  6. [tool.poetry.dependencies]
  7. python = "^3.8"
  8. pandas = "^1.3.3"
  9. streamlit = "^1.0.0"
  10. plotly = "^5.3.1"
  11. setuptools = "^58.0.4"
  12. toml = "^0.10.2"
  13. blinker = "^1.4"
  14. click = "<8.0"
  15. Jinja2 = "^3.0.1"
  16. [tool.poetry.dev-dependencies]
  17. black = "^21.9b0"
  18. pynsist = "^2.7"
  19. [build-system]
  20. requires = ["poetry-core>=1.0.0"]
  21. build-backend = "poetry.core.masonry.api"