-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyscript.toml
More file actions
92 lines (90 loc) · 3 KB
/
pyscript.toml
File metadata and controls
92 lines (90 loc) · 3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name = "Data Contract Playground"
description = "Playground site for creating, exporting and validating data contracts"
packages = [
"pyyaml",
"fastjsonschema",
"requests",
"avro",
"pydantic",
"simple-ddl-parser",
"rdflib",
"jinja_partials",
"jinja2",
"pytz",
"sqlglot"
]
[files]
"src/python/model.py" = "src/python/model.py"
"src/python/common.py" = "src/python/common.py"
"example/data-contract-specification/data-contract-specification.yaml" = "./example/data-contract-specification/data-contract-specification.yaml"
"example/avro/orders.avsc" = "./example/avro/orders.avsc"
"example/bigquery/complete_table_schema.json" = "./example/bigquery/complete_table_schema.json"
"example/dbt/manifest_jaffle_duckdb.json" = "./example/dbt/manifest_jaffle_duckdb.json"
"example/dbml/dbml.txt" = "./example/dbml/dbml.txt"
"example/jsonschema/orders_union-types.json" = "./example/jsonschema/orders_union-types.json"
"example/sql/customer.sql" = "./example/sql/customer.sql"
"example/unity/unity_table_schema.json" = "./example/unity/unity_table_schema.json"
[[fetch]]
files = [
"data_contract.py",
"engines/data_contract_checks.py",
"export/exporter.py",
"export/exporter_factory.py",
"export/avro_converter.py",
"export/avro_idl_converter.py",
"export/bigquery_converter.py",
"export/csv_type_converter.py",
"export/data_caterer_converter.py",
"export/dbml_converter.py",
"export/dbt_converter.py",
"export/go_converter.py",
"export/great_expectations_converter.py",
"export/html_export.py",
"export/jsonschema_converter.py",
"export/odcs_v3_exporter.py",
"export/pandas_type_converter.py",
"export/protobuf_converter.py",
"export/pydantic_converter.py",
"export/rdf_converter.py",
"export/sodacl_converter.py",
"export/spark_converter.py",
"export/sql_converter.py",
"export/sql_type_converter.py",
"export/sqlalchemy_converter.py",
"export/terraform_converter.py",
"imports/importer.py",
"imports/importer_factory.py",
"imports/avro_importer.py",
"imports/bigquery_importer.py",
"imports/dbml_importer.py",
"imports/dbt_importer.py",
"imports/jsonschema_importer.py",
"imports/odcs_importer.py",
"imports/odcs_v3_importer.py",
"imports/sql_importer.py",
"imports/unity_importer.py",
"lint/files.py",
"lint/resolve.py",
"lint/resources.py",
"lint/schema.py",
"lint/urls.py",
"model/data_contract_specification.py",
"model/exceptions.py",
"model/odcs.py",
"model/run.py",
"schemas/datacontract-1.1.0.init.yaml",
"schemas/datacontract-1.1.0.schema.json",
"schemas/odcs-3.0.1.schema.json",
"templates/datacontract.html",
"templates/index.html",
"templates/partials/datacontract_information.html",
"templates/partials/datacontract_servicelevels.html",
"templates/partials/datacontract_terms.html",
"templates/partials/definition.html",
"templates/partials/example.html",
"templates/partials/model_field.html",
"templates/partials/server.html",
"templates/style/output.css",
]
from = "datacontract-cli/datacontract"
to_folder = "datacontract"