ced25f38dd
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
* Add project configuration and refactor logic - Created .gitignore to exclude IDE files. - Added project module configuration for Python. - Set up inspection profiles for code quality checks. - Refactored main function logic into separate modules for better organisation. - Introduced helper functions for object manipulation and rule processing. - Implemented spreadsheet reading functionality to dynamically load rules. - Added tests for integration with the Speckle server. * Update import paths for consistency - Changed relative imports to absolute imports for clarity. - Ensured all module references are consistent across files. * Update package versions and add new dependencies Bumped several package versions to their latest releases: - Updated `anyio` to 4.8.0 - Updated `certifi` to 2025.1.31 - Updated `charset-normalizer` to 3.4.1 - Updated `click` to 8.1.8 - Updated `deprecated` to 1.2.18 - Updated `graphql-core` to 3.2.6 Added a new dependency: - Introduced `levenshtein` version 0.26.1. Removed some unnecessary extras from the dev dependencies for cleaner management.
40 lines
840 B
TOML
40 lines
840 B
TOML
[tool.poetry]
|
|
name = "speckle-automate-py"
|
|
version = "0.1.0"
|
|
description = "Allows for QAQC property checking with Speckle"
|
|
authors = ["Jonathon Broughton <jonathon@speckle.systems>"]
|
|
readme = "README.md"
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
more-itertools = "^10.6.0"
|
|
pandas = "^2.2.3"
|
|
python = "^3.11"
|
|
python-dotenv = "^1.0.1"
|
|
python-levenshtein = "^0.26.1"
|
|
specklepy = "^2.21.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^25.0.0"
|
|
mypy = "^1.3.0"
|
|
pydantic-settings = "^2.3.0"
|
|
pytest = "^8.0.0"
|
|
ruff = "^0.9.5"
|
|
# specklepy = { path = "../specklepy", develop = true }
|
|
|
|
[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"
|