mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-04-19 16:10:01 +02:00
78 lines
1.6 KiB
TOML
78 lines
1.6 KiB
TOML
[tool.poetry]
|
|
name = "pydase"
|
|
version = "0.1.0"
|
|
description = "A flexible and robust Python library for creating, managing, and interacting with data services, with built-in support for web and RPC servers, and customizable features for diverse use cases."
|
|
authors = ["Mose Mueller <mosmuell@ethz.ch>"]
|
|
readme = "README.md"
|
|
packages = [{ include = "pydase", from = "src" }]
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
rpyc = "^5.3.1"
|
|
loguru = "^0.7.0"
|
|
fastapi = "^0.100.0"
|
|
uvicorn = "^0.22.0"
|
|
toml = "^0.10.2"
|
|
python-socketio = "^5.8.0"
|
|
websockets = "^11.0.3"
|
|
confz = "^2.0.0"
|
|
pint = "^0.22"
|
|
pillow = "^10.0.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
types-toml = "^0.10.8.6"
|
|
pytest = "^7.4.0"
|
|
pytest-cov = "^4.1.0"
|
|
mypy = "^1.4.1"
|
|
black = "^23.1.0"
|
|
isort = "^5.12.0"
|
|
flake8 = "^5.0.4"
|
|
flake8-use-fstring = "^1.4"
|
|
flake8-functions = "^0.0.7"
|
|
flake8-comprehensions = "^3.11.1"
|
|
flake8-pep585 = "^0.1.7"
|
|
flake8-pep604 = "^0.1.0"
|
|
flake8-eradicate = "^1.4.0"
|
|
matplotlib = "^3.7.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pyright]
|
|
include = ["src/pydase", "tests"]
|
|
exclude = ["**/node_modules", "**/__pycache__", "docs", "frontend"]
|
|
venvPath = "."
|
|
venv = ".venv"
|
|
typeCheckingMode = "basic"
|
|
reportUnknownMemberType = true
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
exclude = '''
|
|
/(
|
|
\.git
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| venv
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
)/
|
|
'''
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
|
|
[tool.mypy]
|
|
mypy_path = "src/"
|
|
show_error_codes = true
|
|
disallow_untyped_defs = true
|
|
disallow_untyped_calls = true
|
|
disallow_incomplete_defs = true
|
|
check_untyped_defs = true
|
|
ignore_missing_imports = false
|