Last active
March 16, 2021 07:28
-
-
Save 1kastner/032ea28683e6cbbf9f05391efa0187fa to your computer and use it in GitHub Desktop.
poetry project definition
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "einfuehrung-in-jupyter-notebooks" | |
version = "0.1.0" | |
description = "Workshop material for 'Einführung in Jupyter Notebooks'" | |
authors = ["Marvin Kastner <[email protected]>"] | |
[tool.poetry.dependencies] | |
python = "^3.8" | |
jupyterlab = "^3.0.10" | |
pandas = "^1.2.3" | |
matplotlib = "^3.3.4" | |
folium = "^0.12.1" | |
ipycytoscape = "^1.2.0" | |
ipywidgets = "^7.6.3" | |
ipycanvas = "^0.8.2" | |
networkx = "^2.5" | |
scipy = "^1.6.1" | |
[tool.poetry.dev-dependencies] | |
jupyterlab-lsp = "^3.4.1" | |
autopep8 = "^1.5.5" | |
black = "^20.8b1" | |
pyflakes = "^2.2.0" | |
rope = "^0.18.0" | |
[build-system] | |
requires = ["poetry-core>=1.0.0"] | |
build-backend = "poetry.core.masonry.api" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment