From 8a55613554b77b240c21834bb3dafc768b79ee02 Mon Sep 17 00:00:00 2001 From: alexis mcclimans Date: Tue, 12 May 2020 16:31:30 -0700 Subject: [PATCH] fix message --- setup.py | 6 +++--- shaclgen/__main__.py | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 8fdc508..66fb235 100644 --- a/setup.py +++ b/setup.py @@ -10,14 +10,14 @@ setup( name = 'shaclgen', - version = '0.2.5', + version = '0.2.5.1', packages = ['shaclgen'], package_data = {'shaclgen': ['prefixes/*.json']}, description='Shacl graph generator', long_description=l_description, author='Alexis Keely', - url='https://github.com/alexiskeely/shaclgen', - author_email='alexiskm@uw.com', + url='https://github.com/uwlib-cams/shaclgen', + author_email='alexiskeelie@gmail.com', install_requires=requirements, keywords=['Linked Data', 'Semantic Web', 'Python', 'SHACL', 'Shapes', 'Schema', 'Validate'], diff --git a/shaclgen/__main__.py b/shaclgen/__main__.py index 01c3b1c..20faf62 100644 --- a/shaclgen/__main__.py +++ b/shaclgen/__main__.py @@ -19,7 +19,7 @@ a basic shape file based on the classes and properties present. usage: - shaclgen path_to_graph optional arguments + shaclgen [path to graph] [optional arguments] $ shaclgen https://www.lib.washington.edu/static/public/cams/data/datasets/uwSemWebParts/webResource-1-0-0.nt -ns www.example.org @@ -45,7 +45,6 @@ args = parser.parse_args() def main(): - print('devy dev') if args.ontology: g = schema(args.graph) kwargs = {'serial': 'turtle'}