Skip to content

Instantly share code, notes, and snippets.

@shelper
Last active May 27, 2022 13:52
Show Gist options
  • Save shelper/a9ce70b434287808cab47d0aaa878723 to your computer and use it in GitHub Desktop.
Save shelper/a9ce70b434287808cab47d0aaa878723 to your computer and use it in GitHub Desktop.
project files that fail poetry update
[tool.poetry]
name = "zetta"
version = "0.1.0"
description = "example project"
classifiers = [
"Private :: Do Not Upload",
]
[tool.poetry.build]
generate-setup-file = false
[tool.poetry.dependencies]
PySimpleGUI = "^4.18.1"
numpy = "^1.19.5"
pillow = "^8.3.2"
PyYAML = "^5.4.1"
python = "^3.8.0"
typer = "^0.3.2"
python-dotenv = "^0.18.0"
tqdm = "^4.62.0"
sqlmodel= "^0.0.4"
google-cloud-storage = "^1.43.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^6.2.5"
black = { version = "^18.3-alpha.0"}
rope = "^0.19.0"
pre-commit = "^2.17.0"
[tool.poetry.group.ml]
optional = true
[tool.poetry.group.ml.dependencies]
h5py = "3.1.0"
jupyter = "^1.0.0"
tensorflow = "2.5.0"
scikit-learn = "0.24.2"
pandas = "1.2.4"
seaborn = "0.11.1"
matplotlib = "^3.4.2"
opencv-python = "^4.5.2"
[tool.poetry.group.web]
optional = true
[tool.poetry.group.web.dependencies]
fastapi = "^0.68.0"
torch = "^1.5.0+cpu"
torchvision = "^0.6.0+cpu"
python-multipart = "^0.0.5"
aiofiles = "^0.4.0"
streamlit = "^0.86.0"
requests = "^2.24.0"
requests-toolbelt = "^0.9.1"
[tool.poetry.scripts]
zetta = "zetta.zetta:app"
[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