Skip to content

Instantly share code, notes, and snippets.

@econeale
Created August 24, 2023 19:04
Show Gist options
  • Save econeale/f03e4d0e5330979409a613e3d7bf2b60 to your computer and use it in GitHub Desktop.
Save econeale/f03e4d0e5330979409a613e3d7bf2b60 to your computer and use it in GitHub Desktop.
PyProject.toml for debugging
[tool.poetry]
name = "imager"
version = "0.0.0"
description = ""
authors = ["Neale Petrillo <neale@ecovative.com>"]
license = "Proprietary"
readme = "README.md"
packages = [{include = "imager"}]
[tool.poetry.dependencies]
python = "^3.10"
pygobject = "^3.44.1"
pydantic-settings = "^2.0.2"
pyyaml = "^6.0.1"
opencv-python = "^4.8.0.74"
pyserial = "^3.5"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
mypy = "^1.2"
ruff = "^0.0.282"
pytest = "^7.4.0"
types-pyyaml = "^6.0.12.11"
licensecheck = "2023.3"
lxml = "^4.9.3"
imgaug = "^0.4.0"
types-requests = "^2.31.0.2"
[tool.licensecheck]
using = "poetry:dev"
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
extend-exclude = ["*cv2*", "os.py", "typing.py"]
[tool.mypy]
plugins = [
"pydantic.mypy"
]
ignore_missing_imports = true
follow_imports = 'skip'
strict = true
[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