Content for Decem's Python course.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 24 lines 517 B view raw
1[tool.poetry] 2name = "python-course" 3version = "1.0.0" 4description = "A Python course." 5authors = ["Marcos Gabarda <hey@marcosgabarda.com>"] 6license = "MIT" 7 8[tool.poetry.dependencies] 9python = "^3.8" 10ipython = "^7.23.1" 11jupyter = "^1.0.0" 12numpy = "^1.20.3" 13pandas = "^1.2.4" 14matplotlib = "^3.4.2" 15pandoc = "^1.0.2" 16requests = "^2.25.1" 17rise = "^5.7.1" 18jupyter-contrib-nbextensions = "^0.5.1" 19 20[tool.poetry.dev-dependencies] 21 22[build-system] 23requires = ["poetry-core>=1.0.0"] 24build-backend = "poetry.core.masonry.api"