Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,24 @@ build-backend = "setuptools.build_meta"

[project]
name = "druncschema"
description = "Schema definitions and compilation script for drunc"
version = "0.11.3"
readme = "docs/README.md"
requires-python = ">=3.10"
dynamic = ["version", "readme"]
dependencies = [
"grpcio==1.68.0",
"grpcio-status==1.68.0",
"grpcio-tools==1.68.0",
"googleapis-common-protos==1.66.0"
"click",
"grpcio",
"grpcio-status",
"grpcio-tools",
"googleapis-common-protos",
"rich",
]

authors = [
{name = "Pierre Lasorak", email = "p.lasorak@imperial.ac.uk"},
{name = "Pawel Plesniak", email = "pawel.plesniak15@imperial.ac.uk"},
{name = "Claudia Su", email = "claudia.su@physics.ox.ac.uk"}
]
description = "Schema definitions and compilation script for drunc"

[project.optional-dependencies]
dev = ["ruff", "pre-commit", "pytest", "mypy-protobuf", "types-protobuf"]
Expand All @@ -29,18 +33,14 @@ Repository = "https://github.com/DUNE-DAQ/druncschema"
[project.scripts]
druncschema-generate-protos = "druncschema.apps.__main_generate_protos__:main"

[tool.setuptools.dynamic]
version = {attr = "druncschema.__version__"}
readme = {file = ["docs/README.md"]}

[tool.setuptools.packages.find]
where = ["python_not_for_dunedaq"]
where = ["src"]

[tool.ruff]
exclude = [
"python_not_for_dunedaq/druncschema.egg-info",
"python_not_for_dunedaq/*/*_pb2.py*",
"python_not_for_dunedaq/*/*_pb2_grpc.py",
"src/druncschema.egg-info",
"src/*/*_pb2.py*",
"src/*/*_pb2_grpc.py",
]

[tool.ruff.lint]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# This directory is _NOT_ to be used for dune daq, this is solely when one wants to run standalone without any dunedaq dependency.
__version__='0.11.3'
File renamed without changes.