Files
speckle_automate-mesh_densi…/pyproject.toml
T
Jonathon Broughton b538e6d8d3 Update dependencies in pyproject.toml
- Updated matplotlib from version 3.8.0 to 3.9.1
- Updated reportlab from version 4.0.6 to 4.2.2
- Updated black from version 23.3.0 to 23.12.1
- Updated pytest from version 7.4.2 to 7.4.4
- Updated python-dotenv from version 1.0.0 to 1.0.1
- Added vulture dependency with version 2.11
2024-08-04 15:52:54 +01:00

41 lines
878 B
TOML

[tool.poetry]
name = "speckle_automate-mesh_density_checker"
version = "0.1.0"
description = "Examine model health by identifying areas of high mesh density as possible perfomance issues."
authors = ["Jonathon Broughton <jonathon@speckle.systems>"]
readme = "README.md"
packages = [{ include = "src" }]
[tool.poetry.dependencies]
python = "^3.11"
matplotlib = "^3.9.1"
seaborn = "^0.13.0"
reportlab = "^4.2.2"
mypy = "^1.11.1"
pydantic = "^2.8.2"
specklepy = "^2.19.5"
[tool.poetry.group.dev.dependencies]
black = "^23.12.1"
ruff = "^0.0.271"
pytest = "^7.4.4"
python-dotenv = "^1.0.1"
vulture = "^2.11"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade
"D", # pydocstyle
"I", # isort
]
[tool.ruff.pydocstyle]
convention = "google"