Skip to content

Instantly share code, notes, and snippets.

@yanoom
Created March 18, 2020 13:16
Show Gist options
  • Save yanoom/b0a757aa512e6cb0a122ca3cfbc7f416 to your computer and use it in GitHub Desktop.
Save yanoom/b0a757aa512e6cb0a122ca3cfbc7f416 to your computer and use it in GitHub Desktop.
pyproject.toml for our example app
[tool.poetry]
name = "flask-pyctuator-example"
version = "1.0.0"
description = "Example of using Pyctuator"
authors = [
"Luke Skywalker <Luke@starwars.com>",
]
[tool.poetry.dependencies]
python = "^3.7"
psutil = { version = "^5.6" }
flask = { version = "^1.1" }
pyctuator = { path = "../../dist/pyctuator-0.7.3-py3-none-any.whl" }
[tool.poetry.dev-dependencies]
mypy = "^0.770"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment