50 lines
1014 B
TOML
50 lines
1014 B
TOML
[tool.poetry]
|
|
name = "speckle-blender"
|
|
version = "2.0.0"
|
|
description = "the Speckle 2.0 connector for Blender!"
|
|
authors = ["izzy lyseggen <izzy.lyseggen@gmail.com>", "Gergő Jedlicska <gergo@jedlicska.com>"]
|
|
license = "Apache-2.0"
|
|
package-mode = false
|
|
|
|
[tool.poetry.requires-plugins]
|
|
poetry-plugin-export = ">=1.8"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.9.0, <4.0.0"
|
|
specklepy = "^2.23.0"
|
|
|
|
# [tool.poetry.group.local_specklepy.dependencies]
|
|
# specklepy = {path = "../specklepy", develop = true}
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
fake-bpy-module-latest = "^20241010"
|
|
black = "24.10.0"
|
|
isort = "^5.13.2"
|
|
pylint = "^3.3.2"
|
|
ruff = "^0.8.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
exclude = '''
|
|
/(
|
|
\.eggs
|
|
| \.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
)/
|
|
'''
|
|
include = '\.pyi?$'
|
|
line-length = 88
|
|
target-version = ["py39", "py310", "py311", "py312", "py313"]
|
|
|
|
[tool.isort]
|
|
profile = "black" |