DTaaS CLI
Project description
DTaaS Command Line Interface
Command-line tool for the
INTO-CPS-Association
Digital Twin as a Service platform. Use it to generate deployment projects,
manage users, and operate a running DTaaS instance. All from a single dtaas
entry point.
โก Quick Start
From a clean machine to a running DTaaS deployment in seven steps.
# 1. Create and activate a virtual environment (recommended)
python -m venv .venv && source .venv/bin/activate # Linux / macOS
# python -m venv .venv && .venv\Scripts\activate # Windows
# 2. Install the package
pip install dtaas
# 3. Generate dtaas.toml + a sample users.csv to fill in
dtaas admin config generate
# 4. Open dtaas.toml and fill in your server DNS, paths, and credentials
# (see Configuration Reference below for all fields)
# 5. Validate the configuration fix any reported errors before continuing
dtaas admin config validate
# 6. Generate deployment files for your chosen scenario
dtaas generate-deployment --type secure-server
# 7. Bring the deployment up
dtaas admin install
# Tear it down when done
dtaas admin uninstall
Deployment type cheat-sheet
--typeWhen to use localhostLocal dev / demo only insecure-serverMulti-user HTTP demo: not internet-facing secure-serverMulti-user HTTPS: production-ready secure-server-gitlabHTTPS + bundled GitLab: production-ready workspace-localhostWorkspace + Dex on localhost workspace-secure-serverWorkspace + Keycloak: production-ready
๐ Table of Contents
๐ฆ Installation
Installation inside a virtual environment is strongly recommended to avoid conflicts with system-wide packages.
python -m venv .venv
source .venv/bin/activate # Linux / macOS
# .venv\Scripts\activate # Windows
pip install dtaas
Verify the install:
dtaas --help
๐ Commands
๐๏ธ admin config
Manage dtaas.toml independently of the rest of the project. This is the
first step in the setup workflow generate a template, fill it in, then
validate before running any other command.
Generate a fresh template
dtaas admin config generate
This writes dtaas.toml and a sample users.csv (bulk input for
dtaas admin user add --file) into the target directory.
Validate an existing file
dtaas admin config validate
validate reads dtaas.toml (from --output-dir first, then the current
directory) and reports all problems at once:
| Field | Rule |
|---|---|
git-repo |
Must be an http(s) URL |
[common].server-dns |
Must be localhost, an IP, or a fully qualified hostname |
[common].path |
Must be an absolute path to an existing directory |
[common.security].certs-src |
When present, must be an absolute path to an existing directory |
[common.resources].set_limits |
When present, true or false (default true) |
[common.resources].cpus |
Positive number (e.g. 4 or 0.5) |
[common.resources].pids_limit |
Integer |
[common.resources].mem_limit, shm_size |
Byte size with required unit (e.g. 4G, 512m) |
[[users]] |
When present, must be an array of tables; usernames must be unique |
[[users]].username |
Required, valid username |
[[users]].email |
Required, valid RFC 5321/5322 address (no DNS lookup) |
[[users]].groups |
When present, must be a list of strings |
[[users]].load_balance |
When present, must be true or false |
[[users]].password |
When present, must be a string |
| Deployment-section URLs | When present, must be http(s) URLs |
Deployment-section default-user |
When present, must be a valid username |
Deployment-section URLs include react-app-oauth-url, oauth-url,
auth-authority, and keycloak-issuer-url across [frontend],
[localhost], [insecure-server], [secure-server], [workspace-localhost],
and [workspace-secure-server]; each is checked only when its section is
present.
path and certs-src are checked against the local filesystem, run
validate on the deployment host.
The [common.resources] limit fields (cpus, pids_limit, mem_limit,
shm_size) are required only when set_limits is true (the default). With
set_limits = false they are optional and ignored; any value still present is
validated.
Options
| Option | Default | Description |
|---|---|---|
--output-dir PATH |
. |
For generate: target directory (created if missing). For validate: search location |
--force |
off | (generate only) Overwrite an existing dtaas.toml |
generate-deployment
Copies the full project structure for a specific deployment scenario
docker-compose.yml, config examples, and supporting files, into a target
directory ready to be customised.
dtaas generate-deployment --type <name>
Options
| Option | Default | Description |
|---|---|---|
--type NAME |
(required) | Deployment scenario (see table below) |
--output-dir PATH |
. |
Target directory (must already exist) |
--force |
off | Overwrite files that already exist |
Available types
--type |
Deployment scenario | Support level |
|---|---|---|
localhost |
Single-machine Docker deployment | dev/demo only |
insecure-server |
Multi-user HTTP server | insecure/demo only |
secure-server |
Multi-user HTTPS/TLS server | production-supported |
secure-server-gitlab |
HTTPS/TLS + integrated GitLab | production-supported |
workspace-localhost |
Workspace service with Dex on localhost | dev/demo only |
workspace-secure-server |
Workspace service with Keycloak | production-supported |
โ ๏ธ Warning Types marked dev/demo only or insecure/demo only run over plain HTTP with default or static credentials. Do not expose them to the internet or shared networks. Production-supported types still require manual hardening steps documented in the
README.mdandCONFIGURATION.mdshipped with each generated project.
Examples
# Localhost demo in the current directory
dtaas generate-deployment --type localhost
# Production HTTPS server in a subdirectory
dtaas generate-deployment --type secure-server --output-dir ./my-server
# Regenerate, overwriting existing files
dtaas generate-deployment --type insecure-server --output-dir ./demo --force
Configuration substitution
When dtaas.toml is present, generate-deployment reads
deployment-specific values from it and substitutes them into the generated
files automatically.
The CLI searches --output-dir first, then falls back to the current working
directory. Each --type reads from its matching top-level section in
dtaas.toml. Values are written into dotenv files (config/.env,
config/conf.server) and the React client config (config/client.js).
The [frontend] section supplies REACT_APP_CLIENT_ID and
REACT_APP_AUTH_AUTHORITY for the DTaaS web client, these are a separate
OAuth application from the traefik-forward-auth credentials configured in
[insecure-server] / [secure-server]. The [common] and [[users]]
sections are substituted across all types.
If dtaas.toml is not found, a note is printed and generated files keep
their default placeholder values.
TLS certificate placement
For the TLS types (secure-server, secure-server-gitlab,
workspace-secure-server), generate-deployment also populates the
certs/ directory in the output. It reads [common.security].certs-src from
dtaas.toml and copies the latest fullchain.pem and privkey.pem there.
๐ admin install
Brings a generated deployment up with a single command.
dtaas admin install
Internally runs docker compose up -d against the docker-compose.yml in
the installation directory. Before starting, it ensures per-user workspace
directories for every [[users]] record exist, recreating each from
files/template/ if missing and sets ownership to 1000:100.
Options
| Option | Default | Description |
|---|---|---|
--output-dir PATH |
. |
Installation directory containing the generated deployment |
The CLI looks for dtaas.toml in --output-dir first, then the current
working directory, so a single top-level dtaas.toml can serve a deployment
generated into a subdirectory:
dtaas admin install --output-dir ./insecure
The command fails with a clear error if docker-compose.yml is missing,
dtaas.toml cannot be found, or the Docker daemon is unreachable.
๐งน admin uninstall
Tears the deployment down, stopping and removing containers and networks.
dtaas admin uninstall
User containers added with admin user add run as a separate Compose project;
they are torn down first so they do not hold the shared network open.
Per-user workspace files are preserved by default.
To also delete the generated per-user workspace directories:
dtaas admin uninstall --remove-user-files
This is destructive, so the command prompts for confirmation. Skip the prompt
in non-interactive scripts with --yes:
dtaas admin uninstall --remove-user-files --yes
Options
| Option | Default | Description |
|---|---|---|
--output-dir PATH |
. |
Installation directory |
--remove-user-files |
off | Also delete per-user workspace directories |
--yes / -y |
off | Skip the confirmation prompt for --remove-user-files |
--remove-user-filesremoves only the per-user directories inside<output-dir>/files/, preservingfiles/common/andfiles/template/so a lateradmin installcan recreate user directories. It refuses to follow a symlinkedfiles/. Double-check--output-dirbefore using this flag.
๐ admin update --certs
Rotates TLS certificates of a running deployment in place: no project regeneration or manual file copying required.
dtaas admin update --certs
The command reads [common.security].certs-src from dtaas.toml, then:
- Validates the new certificate pair (parseable, private key matches cert, no expired intermediates).
- Stops the
traefikservice to release open file handles. - Swaps the validated files into
<output-dir>/certs/, backing up the live pair and restoring it on any failure. - Restricts the private key to
0600(POSIX; prints a warning on Windows). - Restarts
traefikand waits for it to come back up.
If validation fails, live certificates are left untouched. The command is safe to run repeatedly.
Options
| Option | Default | Description |
|---|---|---|
--certs |
(required) | Refresh the deployment's TLS certificates |
--output-dir PATH |
. |
Installation directory |
๐งฉ admin update --config
Re-applies the values in dtaas.toml to an already-installed deployment's
service config files without regenerating the project.
dtaas admin update --config
Treats dtaas.toml as the single source of truth, re-runs the same
substitution as generate-deployment, and if anything changed, recreates all
deployment services with docker compose up -d --force-recreate. The
deployment type is auto-detected from docker-compose.yml.
# Preview changes without writing or restarting
dtaas admin update --config --dry-run
# Apply changes and restart
dtaas admin update --config
# Update a deployment in a subdirectory
dtaas admin update --config --output-dir ./my-server
--config validates dtaas.toml before making any changes and refuses to
apply if problems are found. It is idempotent a second run with no
dtaas.toml changes reports No configuration changes and restarts nothing.
Options
| Option | Default | Description |
|---|---|---|
--config |
(required) | Re-apply dtaas.toml to installed service config files |
--dry-run |
off | Report what would change without writing or restarting |
--output-dir PATH |
. |
Installation directory |
--certsand--configmay be combined in a single invocation.
generate-project
Scaffolds dtaas.toml, Docker Compose user-workspace templates, and the
files/template/ directory into your working directory.
dtaas generate-project
Options
| Option | Default | Description |
|---|---|---|
--output-dir PATH |
. |
Target directory (must already exist) |
--force |
off | Overwrite files that already exist |
Generated files
| Item | Purpose |
|---|---|
dtaas.toml |
Main CLI configuration |
users.server.yml |
Docker Compose template for HTTP deployments |
users.server.secure.yml |
Docker Compose template for HTTPS/TLS deployments |
users.resources.yml |
Per-user resource-limit overlay, merged in when set_limits is true |
files/template/ |
Skeleton copied into each new user workspace |
Tip: verify the Docker image tag
users.server.ymlandusers.server.secure.ymlcontain a pinned workspace image tag (e.g.intocps/workspace:main-967bc10). Check Docker Hub and update the tag to a current, stable version before deploying.
โ admin user add
Provisions users on a running DTaaS instance. Additional users are recorded in
the CLI-owned dtaas.users.registry.json
(see User files), not in dtaas.toml.
Options
| Option | Default | Description |
|---|---|---|
USERNAME |
โ | Add one user (requires --email) |
--file PATH |
โ | Bulk-add users from a CSV |
--email TEXT |
โ | Email for USERNAME (enables forward-auth routing) |
--group TEXT |
additional |
Group tag for USERNAME; repeat the flag for multiple groups, e.g. --group dtaas --group testers |
--load-balance / --no-load-balance |
on | Mark USERNAME for load balancing |
Add a single user:
dtaas admin user add --email alice@intocps.org --group dtaas --load-balance alice
Click accepts
--group, and--load-balancein any position relative toUSERNAMEthe form above is the recommended convention, matchinguseradd [options] LOGIN.
--group is repeatable, not comma-separated pass it once per group to add a
user to multiple groups:
dtaas admin user add --email alice@intocps.org --group dtaas --group testers alice
Or bulk-add from a CSV:
dtaas admin user add --file users.csv
dtaas admin config generate writes a sample users.csv next to dtaas.toml:
username,email,groups,load_balance
alice,alice@intocps.org,additional,true
bob,bob@intocps.org,additional;beta-testers,false
groups is a ;-separated list and load_balance is true/false. Both
forms merge into the registry (never hand-edited), then every registry user is
provisioned. A username already declared in dtaas.toml's [[users]] or the
registry is skipped with a warning it is never added twice or overwritten.
A USERNAME or --file is required a bare dtaas admin user add with
neither is rejected rather than silently reprovisioning the whole registry.
To resync everyone already in the registry (e.g. after compose.users.yml
was lost), use dtaas admin config reconcile --fix instead.
Options
| Option | Default | Description |
|---|---|---|
USERNAME |
โ | Add one user (requires --email) |
--file PATH |
โ | Bulk-add users from a CSV |
--email TEXT |
โ | Email for USERNAME (enables forward-auth routing) |
--group TEXT |
additional |
Group tag for USERNAME; repeat the flag for multiple groups, e.g. --group dtaas --group testers |
--load-balance / --no-load-balance |
on | Mark USERNAME for load balancing |
For each username the CLI checks whether files/<username>/ already exists.
If not, a new directory with the correct structure is created from
files/template/. The directory, if it already exists, must be owned by the
user running the dtaas command; otherwise the command fails.
When an email is provided for a user in dtaas.toml, the CLI automatically
adds a traefik-forward-auth routing rule to config/conf.server. Restart
the container for the change to take effect:
docker compose --env-file config/.env up -d --force-recreate traefik-forward-auth
Resource limits (optional)
By default each user container is created with the CPU, memory, process, and
shared-memory caps from [common.resources], merged in from the
users.resources.yml overlay. To onboard users without any caps, set
set_limits = false in that section:
# Constrained users (default): limits enforced
[common.resources]
set_limits = true
cpus = 4
mem_limit = "4G"
pids_limit = 4960
shm_size = "512m"
# Unconstrained users: no caps written, limit fields optional
[common.resources]
set_limits = false
The flag is read on every user add, so a deployment can host both constrained
and unconstrained users by toggling set_limits between runs.
Notes
user addstarts a container for a new user or restarts a stopped one; it reports Running for containers already up without restarting them.- Provisioning is idempotent: re-running
user addreprovisions every registry user without duplicating work. An empty registry is a no-op.- Usernames may include '.', '_' and '-' (must start with a letter or digit). (Whitespace, path separators, and shell metacharacters are rejected.)
- This command does not enable AuthMS authentication.
โ admin user delete
Removes one or more users from a running DTaaS instance, like userdel.
Options
| Option | Default | Description |
|---|---|---|
USERNAMES |
โ | One or more usernames to remove |
--file PATH |
โ | Bulk-delete users listed in a CSV (only the username column is used) |
--dry-run |
off | Preview the removal without making any changes |
Pass the usernames as arguments:
dtaas admin user delete username1 username2
Or bulk-delete from a CSV (the same users.csv format used by
admin user add --file other columns are ignored):
dtaas admin user delete --file users.csv
USERNAMES and --file are mutually exclusive, and one of them is required.
Each user is deprovisioned (its container stopped, its compose service and
forward-auth rule removed) and dropped from dtaas.users.registry.json. Users
that are not currently provisioned are reported and skipped, but are still
removed from the registry.
Preview a removal without making any changes with --dry-run:
dtaas admin user delete username1 username2 --dry-run
It lists which users would be deprovisioned and removed from the registry, then exits without stopping containers or editing any file.
The CLI automatically removes the traefik-forward-auth routing rules for
deleted users from config/conf.server. Restart the container for the change
to take effect:
docker compose --env-file config/.env up -d --force-recreate traefik-forward-auth
๐ admin config reconcile
Reports drift between dtaas.users.registry.json (who should be
provisioned) and the live compose.users.yml services (who is
provisioned).
dtaas admin config reconcile
It lists:
- missing registered but not currently provisioned;
- unexpected provisioned but not in the registry (investigate: may be a manual edit or a partial delete);
- drifted provisioned, but the live config no longer matches what
.dtaas.state.jsonrecorded when it was last provisioned.
When everything matches it prints In sync: no drift detected.
Without --fix this is read-only. Pass --fix to reprovision missing and
drifted users afterward (equivalent to running dtaas admin user add, so
it acts on the current directory, not --output-dir):
dtaas admin config reconcile --fix
unexpected services are never touched by --fix removing something
that's actually running is a deliberate action use
dtaas admin user delete for those.
Options
| Option | Default | Description |
|---|---|---|
--output-dir PATH |
. |
Installation directory to inspect |
--fix |
off | Reprovision missing/drifted registry users after reporting |
๐ฅ User files
User management spans three files, each with a single owner, modelled on the
config/state split Terraform uses for .tf vs terraform.tfstate:
| File | Owner | Contents | Git |
|---|---|---|---|
dtaas.toml [[users]] |
Human, at install time | Starting users: one self-contained record per user (username, email, groups, load_balance) |
Tracked hand-edited |
dtaas.users.registry.json |
CLI (user add / user delete) |
Additional users, same fields | Tracked CLI-written, never hand-edited |
.dtaas.state.json |
CLI, at provisioning time | Observed runtime facts: container id, status, provisioned-at, config hash | Ignored runtime cache |
dtaas.tomlis written once by a human and never rewritten by the CLI, so a comment-bearing, reviewed config is never silently mutated.dtaas.users.registry.jsonis a database the CLI owns and mutates atomically (the wayuseraddowns/etc/passwd). Edit its users throughdtaas admin user add --file users.csv/dtaas admin user delete, not by hand.users.csvcopied bydtaas admin config generateis the human-editable bulk input that feeds it..dtaas.state.jsonis a disposable cache of what is actually running, refreshed on every add/delete. It is git-ignored and safe to delete.
โ๏ธ Configuration Reference dtaas.toml
dtaas.toml is the single source of truth for all CLI commands. Generate a
blank template with dtaas admin config generate, fill it in, then confirm
it is valid with dtaas admin config validate before running any other command.
Which sections does my deployment need?
Required โ
Optional โ
Not-Used โ
Server deployments
| Section | localhost |
insecure-server |
secure-server |
secure-server-gitlab |
|---|---|---|---|---|
[common] |
โ | โ | โ | โ |
[common.security] |
โ | โ | โ | โ |
[common.resources] |
โ | โ | โ | โ |
[[users]] |
โ | โ | โ | โ |
[frontend] |
โ | โ | โ | โ |
[localhost] |
โ | โ | โ | โ |
[insecure-server] |
โ | โ | โ | โ |
[secure-server] |
โ | โ | โ | โ |
[secure-server-gitlab] |
โ | โ | โ | โ |
Workspace deployments
| Section | workspace-localhost |
workspace-secure-server |
|---|---|---|
[common] |
โ | โ |
[common.security] |
โ | โ |
[common.resources] |
โ | โ |
[[users]] |
โ | โ |
[workspace-localhost] |
โ | โ |
[workspace-secure-server] |
โ | โ |
Annotated dtaas.toml
The full file below shows every possible key with inline comments. Copy it as a starting point and delete sections that do not apply to your deployment type (see matrix above).
# โโ Common settings (all deployment types) โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[common]
# Public hostname of the server. Use "localhost" for local deployments,
# a fully-qualified domain name (e.g. "dtaas.example.com") for servers,
# or a bare IP address.
server-dns = "dtaas.example.com"
# Absolute path to the DTaaS installation directory on the deployment host.
# Must exist before running validate.
path = "/opt/dtaas"
# โโ TLS settings (required for: secure-server, secure-server-gitlab,
# workspace-secure-server) โโโโโโโโโโโโโโโโโโโโโโ
[common.security]
tls = true
# Absolute path to the directory containing fullchain.pem and privkey.pem.
# Used by generate-deployment (seeds certs/) and admin update --certs.
certs-src = "/etc/letsencrypt/live/dtaas.example.com"
# โโ Per-user container resource limits (optional, all types) โโโโโโโโโโโโโโโโโโ
[common.resources]
# Enforce the limits below. Set to false to add users without any caps.
# The 4 fields are then optional and ignored. Defaults to true when omitted.
set_limits = true
cpus = 4 # CPU cores; may be fractional, e.g. 0.5
mem_limit = "4G" # memory limit unit required: G, m, k โฆ
pids_limit = 4960 # maximum number of processes per container (integer)
shm_size = "512m" # shared memory unit required
# โโ Starting users (all deployment types) โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# One self-contained [[users]] block per user, hand-edited once at install
# time. Presence in this file is the desired state there are no add/delete
# lists. Additional users added later with `dtaas admin user add` live in the
# CLI-owned dtaas.users.registry.json instead.
# Usernames must match GitLab accounts and be unique across the array.
#
# email enables traefik-forward-auth routing rules automatically;
# groups/load_balance carry per-user tags. password is optional (used by
# future GitLab-provisioning onboarding) avoid committing a real secret
# here; prefer supplying it at runtime instead.
[[users]]
username = "alice"
email = "alice@example.com"
groups = ["default", "dtaas"]
load_balance = true
[[users]]
username = "bob"
email = "bob@example.com"
groups = ["default", "dtaas"]
load_balance = false
# โโ React web client OAuth app (insecure-server, secure-server,
# secure-server-gitlab) โโโโโโโโโโโโโโโโโโโโโโโโ
# This is a SEPARATE OAuth application from the traefik-forward-auth app
# configured in [insecure-server] / [secure-server] below.
# Redirect URI: https://<server-dns>/signin-oidc
[frontend]
react-app-client-id = "dtaas-client"
react-app-oauth-url = "https://gitlab.example.com"
# โโ localhost deployment (dev / demo only) โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[localhost]
default-user = "alice"
client-id = "dtaas-local"
auth-authority = "https://dex.example.com"
# โโ insecure-server deployment (HTTP, demo only not internet-facing) โโโโโโโโโ
# GitLab OAuth app for traefik-forward-auth.
# Redirect URI: http://<server-dns>/_oauth
# Scopes: openid profile read_user Type: Confidential
[insecure-server]
oauth-url = "https://gitlab.example.com"
oauth-client-id = "abc123"
oauth-client-secret = "s3cr3t"
oauth-secret = "random-signing-string" # random; used to sign session cookies
# โโ secure-server deployment (HTTPS/TLS production-ready) โโโโโโโโโโโโโโโโโโโ
# Same GitLab OAuth app as insecure-server, with Redirect URI using https.
[secure-server]
oauth-url = "https://gitlab.example.com"
oauth-client-id = "abc123"
oauth-client-secret = "s3cr3t"
oauth-secret = "random-signing-string"
# โโ secure-server-gitlab deployment (bundled GitLab production-ready) โโโโโโโ
# oauth-url is omitted; it is derived from the bundled GitLab service.
[secure-server-gitlab]
oauth-client-id = "abc123"
oauth-client-secret = "s3cr3t"
oauth-secret = "random-signing-string"
# โโ workspace-localhost deployment (Dex on localhost dev / demo only) โโโโโโโ
[workspace-localhost]
default-user = "alice"
client-id = "workspace-local"
auth-authority = "http://localhost:5556/dex"
# โโ workspace-secure-server deployment (Keycloak production-ready) โโโโโโโโโโ
[workspace-secure-server]
keycloak-admin = "admin"
keycloak-admin-password = "change-me"
keycloak-realm = "dtaas"
keycloak-issuer-url = "https://keycloak.example.com/realms/dtaas"
keycloak-client-id = "workspace"
keycloak-client-secret = "s3cr3t"
oauth-secret = "random-signing-string"
client-id = "dtaas-frontend"
auth-authority = "https://keycloak.example.com/realms/dtaas"
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dtaas-1.0.0.tar.gz.
File metadata
- Download URL: dtaas-1.0.0.tar.gz
- Upload date:
- Size: 110.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8d69d23df8256a2f3a14e0b1e620b2310a034475f490adac5950743cf61fcf7
|
|
| MD5 |
e4fa94d6b5d9a017859136cb0cf64245
|
|
| BLAKE2b-256 |
06a91afb72966638c8b2c696d71752f5339c9b06f9f6b21cdb58e1f7d2978703
|
Provenance
The following attestation bundles were made for dtaas-1.0.0.tar.gz:
Publisher:
python-cli.yml on INTO-CPS-Association/DTaaS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
dtaas-1.0.0.tar.gz -
Subject digest:
a8d69d23df8256a2f3a14e0b1e620b2310a034475f490adac5950743cf61fcf7 - Sigstore transparency entry: 2082028234
- Sigstore integration time:
-
Permalink:
INTO-CPS-Association/DTaaS@fd6986bd1a2ed70564f24eaa7c5d4a59ef76b5fa -
Branch / Tag:
refs/heads/feature/distributed-demo - Owner: https://github.com/INTO-CPS-Association
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-cli.yml@fd6986bd1a2ed70564f24eaa7c5d4a59ef76b5fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file dtaas-1.0.0-py3-none-any.whl.
File metadata
- Download URL: dtaas-1.0.0-py3-none-any.whl
- Upload date:
- Size: 156.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c42c7dce5a97a1c1716939ce7a0b08d0f4b7d5621a007236acdf664338906f9
|
|
| MD5 |
cde957dd0bd04dbdc1dd58259bc6c7c5
|
|
| BLAKE2b-256 |
f04460b41d60384b15de62453b3af3a2af1975263f62a26a6c65813aadb7ab31
|
Provenance
The following attestation bundles were made for dtaas-1.0.0-py3-none-any.whl:
Publisher:
python-cli.yml on INTO-CPS-Association/DTaaS
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
dtaas-1.0.0-py3-none-any.whl -
Subject digest:
1c42c7dce5a97a1c1716939ce7a0b08d0f4b7d5621a007236acdf664338906f9 - Sigstore transparency entry: 2082028279
- Sigstore integration time:
-
Permalink:
INTO-CPS-Association/DTaaS@fd6986bd1a2ed70564f24eaa7c5d4a59ef76b5fa -
Branch / Tag:
refs/heads/feature/distributed-demo - Owner: https://github.com/INTO-CPS-Association
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-cli.yml@fd6986bd1a2ed70564f24eaa7c5d4a59ef76b5fa -
Trigger Event:
push
-
Statement type: