File tree Expand file tree Collapse file tree 8 files changed +11
-0
lines changed Expand file tree Collapse file tree 8 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -64,3 +64,7 @@ name = "ocptv"
6464version = " 0.1.6"
6565description = " OCP Test & Validation project api"
6666authors = [
" OCP Test & Validation <[email protected] >" ]
67+
68+ [tool .setuptools .package-data ]
69+ "*" = [" py.typed" ]
70+
Original file line number Diff line number Diff line change 11"""
22The OCP Test & Validation python api for the output of spec compliant JSON.
33"""
4+
45__version__ = "0.1.6"
56__author__ = "OCP Test & Validation"
Original file line number Diff line number Diff line change 11"""
22This module contains output channel configuration for the OCPTV library.
33"""
4+
45import threading
56import typing as ty
67from abc import ABC , abstractmethod
Original file line number Diff line number Diff line change 11"""
22This module covers the raw output semantics of the OCPTV library.
33"""
4+
45import dataclasses as dc
56import json
67import threading
Original file line number Diff line number Diff line change 1111says what the serializer should use for field name.
1212In general, ``metadata.spec_field`` should only be present for primitive types.
1313"""
14+
1415import dataclasses as dc
1516import typing as ty
1617from enum import Enum
Original file line number Diff line number Diff line change 11"""
22This module describes the high level test run and related objects.
33"""
4+
45import sys
56import threading
67import typing as ty
Original file line number Diff line number Diff line change 11"""
22This module describes the test steps inside the test run.
33"""
4+
45import threading
56import typing as ty
67from contextlib import contextmanager
Original file line number Diff line number Diff line change 1+ # Marker file for PEP 561. This package uses inline types.
You can’t perform that action at this time.
0 commit comments