0d2c827297
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
35 lines
717 B
TOML
35 lines
717 B
TOML
[tool.poetry]
|
|
name = "speckle-automate-basic-clash-demo"
|
|
version = "0.1.0"
|
|
description = "Example function for Speckle Automate using specklepy and PyMesh"
|
|
authors = ["Jonathon Broughton <jonathon@speckle.systems>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
specklepy = "2.17.17"
|
|
trimesh = "^4.0.4"
|
|
pytest = "^7.4.2"
|
|
python-dotenv = "^1.0.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^23.3.0"
|
|
mypy = "^1.3.0"
|
|
ruff = "^0.0.271"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.ruff]
|
|
select = [
|
|
"E", # pycodestyle
|
|
"F", # pyflakes
|
|
"UP", # pyupgrade
|
|
"D", # pydocstyle
|
|
"I", # isort
|
|
]
|
|
|
|
[tool.ruff.pydocstyle]
|
|
convention = "google"
|