Skip to content

Commit ab22d10

Browse files
committed
validator entry point
This creates a command line tool "omx-validate" that runs the validation script on a file
1 parent 51f7f07 commit ab22d10

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

api/setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
setup(
77
name='OpenMatrix',
88
keywords='openmatrix omx',
9-
version='0.3.4.1',
9+
version='0.3.5.0',
1010
author='Billy Charlton, Ben Stabler',
1111
author_email='billy@okbecause.com, benstabler@yahoo.com',
1212
packages=find_packages(),
@@ -20,5 +20,11 @@
2020
],
2121
classifiers=[
2222
'License :: OSI Approved :: Apache Software License'
23-
]
23+
],
24+
entry_points={
25+
'console_scripts': [
26+
'omx-validate = openmatrix.validator:command_line',
27+
],
28+
}
29+
2430
)

0 commit comments

Comments
 (0)