Created
May 17, 2022 03:33
-
-
Save alextremblay/427e54bd1a0eaa38646875ec0cf1a214 to your computer and use it in GitHub Desktop.
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 = "utsc.core" | |
version = "2022.5.13" | |
description = "an opinionated set of utilities designed to be easily included in any number of projects" | |
readme = "README.md" | |
authors = ["Alex Tremblay <[email protected]>", "University of Toronto Governing Council <[email protected]>"] | |
license = "MIT" | |
packages = [ | |
{ include = "utsc/core", from = "../../src" } | |
] | |
[tool.poetry.dependencies] | |
python = ">=3.10,<4.0" | |
loguru = {version = "*"} | |
typer = {version = ">=0.4.0"} | |
rich = {version = "*"} | |
pydantic = {version = ">=1.9", optional = true} | |
jinja2 = {version = ">=3.0", optional = true} | |
sentry-sdk = {version = ">=1.4", optional = true} | |
semver = {version = "*", optional = true} | |
pytest = {version = ">=6.0", optional = true} | |
prompt-toolkit = {version = ">=3.0.0", optional = true} | |
[tool.poetry.extras] | |
all = ["pydantic", "jinja2", "sentry-sdk", "semver", "pytest", "prompt-toolkit"] | |
[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