initial commit

This commit is contained in:
Gergő Jedlicska
2023-06-22 12:32:34 +02:00
commit f4fdcb9272
13 changed files with 1757 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
[tool.poetry]
name = "speckle-automate-py"
version = "0.1.0"
description = "Example function for Speckle Automate using specklepy"
authors = ["Gergő Jedlicska <gergo@jedlicska.com>"]
readme = "README.md"
packages = [{include = "src/speckle_automate_py"}]
[tool.poetry.dependencies]
python = "^3.10"
specklepy = "^2.14.1"
typer = "^0.9.0"
pydantic = "^1.10.8"
stringcase = "^1.2.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"