[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "ophyd_devices" version = "0.30.4" description = "Custom device implementations based on the ophyd hardware abstraction layer" requires-python = ">=3.10" classifiers = [ "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering", ] dependencies = [ "ophyd~=1.9", "typeguard", "prettytable", "bec_lib", "numpy", "pyyaml", "std_daq_client", "pyepics", "pytest", "h5py", "hdf5plugin", ] [project.optional-dependencies] dev = ["black", "isort", "coverage", "pylint", "pytest", "pytest-random-order"] [project.scripts] ophyd_test = "ophyd_devices:launch" [project.urls] "Bug Tracker" = "https://gitlab.psi.ch/bec/ophyd_devices/issues" Homepage = "https://gitlab.psi.ch/bec/ophyd_devices" [tool.hatch.build.targets.wheel] include = ["*"] [tool.black] line-length = 100 skip-magic-trailing-comma = true [tool.semantic_release] build_command = "python -m build" version_toml = ["pyproject.toml:project.version"] [tool.semantic_release.commit_author] env = "GIT_COMMIT_AUTHOR" default = "semantic-release " [tool.semantic_release.commit_parser_options] allowed_tags = [ "build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test", ] minor_tags = ["feat"] patch_tags = ["fix", "perf"] default_bump_level = 0 [tool.semantic_release.remote] name = "origin" type = "gitlab" ignore_token_for_push = false [tool.semantic_release.remote.token] env = "GL_TOKEN" [tool.semantic_release.publish] dist_glob_patterns = ["dist/*"] upload_to_vcs_release = true