4bcf005f4a
* chore: bump specklepy * refactor: requirements files * refactor: dockerfile * refactor: update GitHub actions * refactor: update devcontainer config * docs: updated `README` * docs: better explanations * docs: wording * chore: dependabot config * docs: keeping things in sync * fix: skip pip upgrade * refactor: updated devcontainer * refactor: toml instead of requirements * refactor: update docker * docs: updated `README` * chore: classifiers does nothing * chore: wrap up the v3 transition --------- Co-authored-by: Gergő Jedlicska <gergo@jedlicska.com>
38 lines
816 B
TOML
38 lines
816 B
TOML
[project]
|
|
name = "speckle-automate-function"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.11"
|
|
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"]
|
|
|
|
dependencies = ["specklepy==3.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 = []
|