Skip to content

Instantly share code, notes, and snippets.

@alextremblay
Created May 17, 2022 03:33
Show Gist options
  • Save alextremblay/427e54bd1a0eaa38646875ec0cf1a214 to your computer and use it in GitHub Desktop.
Save alextremblay/427e54bd1a0eaa38646875ec0cf1a214 to your computer and use it in GitHub Desktop.
[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 <alex.tremblay@utoronto.ca>", "University of Toronto Governing Council <governing.council@utoronto.ca>"]
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