2021-01-30 20:08:58 +03:00
|
|
|
[tool.poetry]
|
2021-04-09 14:25:51 +03:00
|
|
|
name = "specklepy"
|
2023-12-11 19:30:08 +03:00
|
|
|
version = "2.17.14"
|
2021-04-09 14:25:51 +03:00
|
|
|
description = "The Python SDK for Speckle 2.0"
|
|
|
|
readme = "README.md"
|
|
|
|
authors = ["Speckle Systems <devops@speckle.systems>"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
repository = "https://github.com/specklesystems/speckle-py"
|
|
|
|
documentation = "https://speckle.guide/dev/py-examples.html"
|
|
|
|
homepage = "https://speckle.systems/"
|
2022-10-25 12:55:27 +03:00
|
|
|
packages = [
|
|
|
|
{ include = "specklepy", from = "src" },
|
2023-09-19 21:11:32 +03:00
|
|
|
{ include = "speckle_automate", from = "src" },
|
2022-10-25 12:55:27 +03:00
|
|
|
]
|
2021-04-09 14:25:51 +03:00
|
|
|
|
2021-01-30 20:08:58 +03:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-09-19 21:21:46 +03:00
|
|
|
python = ">=3.8.0, <4.0"
|
2023-12-05 17:03:25 +03:00
|
|
|
pydantic = "^2.5"
|
2021-01-30 20:08:58 +03:00
|
|
|
appdirs = "^1.4.4"
|
2023-12-05 17:03:25 +03:00
|
|
|
gql = { extras = ["requests", "websockets"], version = "^3.3.0" }
|
2022-06-20 14:19:09 +03:00
|
|
|
ujson = "^5.3.0"
|
2022-02-23 14:00:04 +03:00
|
|
|
Deprecated = "^1.2.13"
|
2023-01-04 12:15:36 +03:00
|
|
|
stringcase = "^1.2.0"
|
2023-07-17 16:39:10 +03:00
|
|
|
attrs = "^23.1.0"
|
2023-09-19 21:11:32 +03:00
|
|
|
httpx = "^0.25.0"
|
2021-01-30 20:08:58 +03:00
|
|
|
|
2022-10-26 15:31:04 +03:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-02-09 20:35:20 +03:00
|
|
|
black = "23.11.0"
|
2021-01-30 20:08:58 +03:00
|
|
|
isort = "^5.7.0"
|
2022-10-25 12:55:27 +03:00
|
|
|
pytest = "^7.1.3"
|
2021-01-31 12:29:11 +03:00
|
|
|
pytest-ordering = "^0.6"
|
2021-11-24 18:47:48 +03:00
|
|
|
pytest-cov = "^3.0.0"
|
2022-06-20 14:00:09 +03:00
|
|
|
devtools = "^0.8.0"
|
2022-07-20 20:02:25 +03:00
|
|
|
pylint = "^2.14.4"
|
2024-06-05 18:59:05 +03:00
|
|
|
pydantic-settings = "^2.3.0"
|
2022-10-26 12:30:04 +03:00
|
|
|
mypy = "^0.982"
|
2022-12-19 14:37:20 +03:00
|
|
|
pre-commit = "^2.20.0"
|
2022-12-19 14:44:11 +03:00
|
|
|
commitizen = "^2.38.0"
|
2024-05-16 11:25:58 +03:00
|
|
|
ruff = "^0.4.4"
|
2022-12-20 12:45:22 +03:00
|
|
|
types-deprecated = "^1.2.9"
|
|
|
|
types-ujson = "^5.6.0.0"
|
2022-12-20 16:46:36 +03:00
|
|
|
types-requests = "^2.28.11.5"
|
2022-10-26 12:30:04 +03:00
|
|
|
|
2021-02-11 23:43:28 +03:00
|
|
|
[tool.black]
|
|
|
|
exclude = '''
|
|
|
|
/(
|
|
|
|
\.eggs
|
|
|
|
| \.git
|
|
|
|
| \.hg
|
|
|
|
| \.mypy_cache
|
|
|
|
| \.tox
|
|
|
|
| \.venv
|
|
|
|
| _build
|
|
|
|
| buck-out
|
|
|
|
| build
|
|
|
|
| dist
|
|
|
|
)/
|
|
|
|
'''
|
|
|
|
include = '\.pyi?$'
|
|
|
|
line-length = 88
|
2022-12-20 12:45:22 +03:00
|
|
|
target-version = ["py37", "py38", "py39", "py310", "py311"]
|
2021-02-11 23:43:28 +03:00
|
|
|
|
|
|
|
|
2022-12-19 14:44:11 +03:00
|
|
|
[tool.commitizen]
|
|
|
|
name = "cz_conventional_commits"
|
|
|
|
version = "2.9.2"
|
|
|
|
tag_format = "$version"
|
2021-01-30 20:08:58 +03:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2022-12-09 22:48:02 +03:00
|
|
|
|
|
|
|
[tool.isort]
|
2022-12-19 16:03:20 +03:00
|
|
|
profile = "black"
|