Created
July 24, 2023 08:25
-
-
Save dreadedhamish/55a1124306f739a6ddc3c67cd47404cc to your computer and use it in GitHub Desktop.
pyproject.toml
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 = "testing-poetry-pandas" | |
version = "0.1.0" | |
description = "" | |
authors = ["Your Name <you@example.com>"] | |
readme = "README.md" | |
packages = [{include = "testing_poetry_pandas"}] | |
[tool.poetry.dependencies] | |
python = "^3.10" | |
pandas = "^2.0.3" | |
[tool.poetry.group.dev.dependencies] | |
ipykernel = "^6.24.0" | |
[build-system] | |
requires = ["poetry-core"] | |
build-backend = "poetry.core.masonry.api" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment