41 lines
901 B
TOML
41 lines
901 B
TOML
[project]
|
|
name = "speckle-automate-function"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.13"
|
|
authors = [{ name = "Speckle Systems", email = "hello@speckle.systems" }]
|
|
maintainers = [{ name = "Speckle Systems", email = "hello@speckle.systems" }]
|
|
description = "A Speckle Automate function template using specklepy"
|
|
readme = "README.md"
|
|
license = "Apache-2.0"
|
|
keywords = ["speckle", "automate", "bim", "aec", "ifc", "export", "revit"]
|
|
|
|
dependencies = ["specklepy==3.1.0",
|
|
"ifcopenshell==0.8.4.post1",
|
|
"python-dotenv>=1.0.0",]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"mypy==1.13.0",
|
|
"pytest==7.4.4",
|
|
"ruff==0.11.12",
|
|
|
|
]
|
|
|
|
[tool.ruff]
|
|
exclude = [".venv", "**/*.yml"]
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
"E", # pycodestyle
|
|
"F", # pyflakes
|
|
"UP", # pyupgrade
|
|
"D", # pydocstyle
|
|
"I", # isort
|
|
]
|
|
|
|
[tool.ruff.lint.pydocstyle]
|
|
convention = "google"
|
|
|
|
[tool.setuptools]
|
|
py-modules = []
|