Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

create workbench_tools component #439

Merged
merged 6 commits into from
Feb 10, 2023
Merged
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
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -318,9 +318,6 @@ rml-mapper-path-add-dotenv-file:
@ sed -i '/^RML_MAPPER_PATH/d' .env
@ echo RML_MAPPER_PATH=${RML_MAPPER_PATH} >> .env

refresh-mapping-files:
@ python -m ted_sws.data_manager.entrypoints.cli.cmd_generate_mapping_resources

#clean-mongo-db:
# @ export PYTHONPATH=$(PWD) && python ./tests/clean_mongo_db.py

Expand Down
25 changes: 1 addition & 24 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,30 +73,7 @@ def open_local(paths, mode="r", encoding="utf8"):
long_description_content_type="text/markdown",
packages=packages,
entry_points={
"console_scripts": [
"resources_injector = ted_sws.mapping_suite_processor.entrypoints.cli.cmd_resources_injector:main",
"rml_modules_injector = ted_sws.mapping_suite_processor.entrypoints.cli.cmd_rml_modules_injector:main",
"sparql_generator = ted_sws.mapping_suite_processor.entrypoints.cli.cmd_sparql_generator:main",
"rml_report_generator = ted_sws.rml_to_html.entrypoints.cli.cmd_rml_report_generator:main",
"mapping_runner = ted_sws.notice_transformer.entrypoints.cli.cmd_mapping_runner:main",
"xpath_coverage_runner = ted_sws.notice_validator.entrypoints.cli.cmd_xpath_coverage_runner:main",
"sparql_runner = ted_sws.notice_validator.entrypoints.cli.cmd_sparql_runner:main",
"shacl_runner = ted_sws.notice_validator.entrypoints.cli.cmd_shacl_runner:main",
"validation_summary_runner = ted_sws.notice_validator.entrypoints.cli.cmd_validation_summary_runner:main",
"triple_store_loader = ted_sws.mapping_suite_processor.entrypoints.cli.cmd_triple_store_loader:main",
"mapping_suite_validator = ted_sws.mapping_suite_processor.entrypoints.cli.cmd_mapping_suite_validator:main",
"metadata_generator = ted_sws.mapping_suite_processor.entrypoints.cli.cmd_metadata_generator:main",
"conceptual_mapping_differ = ted_sws.mapping_suite_processor.entrypoints.cli.cmd_conceptual_mapping_differ:main",
"rdf_differ = ted_sws.rdf_differ.entrypoints.cli.cmd_rdf_differ:main",
"mapping_suite_processor = ted_sws.mapping_suite_processor.entrypoints.cli.cmd_mapping_suite_processor:main",
"yarrrml2rml_converter = ted_sws.mapping_suite_processor.entrypoints.cli.cmd_yarrrml2rml_converter:main",
"normalisation_resource_generator = ted_sws.data_manager.entrypoints.cli.cmd_generate_mapping_resources:main",
"s3_rdf_publisher = ted_sws.notice_publisher.entrypoints.cli.cmd_s3_rdf_publisher:main",
"bulk_packager = ted_sws.notice_packager.entrypoints.cli.cmd_bulk_packager:main",
"api-digest_service-start-server = ted_sws.notice_transformer.entrypoints.api.digest_service.server:api_server_start",
"rdf_component_detector = ted_sws.rdf_component_detector.entrypoints.cli.cmd_rdf_component_detector:main",
"export_notices_from_mongodb = ted_sws.data_manager.entrypoints.cli.cmd_export_notices_from_mongodb:main",
],
"console_scripts": [],
},
include_package_data=True,
**kwargs,
Expand Down
Empty file.
Empty file.

This file was deleted.

102 changes: 0 additions & 102 deletions ted_sws/data_manager/entrypoints/cli/cmd_generate_mapping_resources.py

This file was deleted.

Empty file.
6 changes: 0 additions & 6 deletions ted_sws/mapping_suite_processor/entrypoints/cli/__init__.py

This file was deleted.

Loading