Created
March 18, 2020 13:16
-
-
Save yanoom/b0a757aa512e6cb0a122ca3cfbc7f416 to your computer and use it in GitHub Desktop.
pyproject.toml for our example app
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 = "flask-pyctuator-example" | |
version = "1.0.0" | |
description = "Example of using Pyctuator" | |
authors = [ | |
"Luke Skywalker <[email protected]>", | |
] | |
[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