1234567891011121314151617181920212223242526272829303132333435 |
- [tool.poetry]
- name = "nicegui"
- version = "0.1.0"
- description = "Web User Interface with Buttons, Dialogs, Markdown, 3D Scences and Plots"
- authors = ["Zauberzeug GmbH <info@zauberzeug.com>"]
- license = "MIT"
- readme = "README.md"
- repository = "https://github.com/zauberzeug/nicegui"
- keywords = ["gui", "ui", "web", "interface", "live"]
- [tool.poetry.dependencies]
- python = "^3.7"
- justpy = "0.1.5"
- matplotlib = "^3.4.1"
- typing-extensions = "^3.10.0"
- markdown2 = "^2.4.0"
- Pygments = "^2.9.0"
- docutils = "^0.17.1"
- asttokens = "^2.0.5"
- uvicorn = {extras = ["watchgodreloader"], version = "^0.14.0"}
- watchgod = "^0.7"
- pydantic = "^1.8.2"
- websockets = "^9.1"
- [tool.poetry.dev-dependencies]
- icecream = "^2.1.0"
- autopep8 = "^1.5.7"
- debugpy = "^1.3.0"
- [build-system]
- requires = [
- "setuptools>=30.3.0,<50",
- "poetry-core>=1.0.0"
- ]
- build-backend = "poetry.core.masonry.api"
|