Skip to content

Commit

Permalink
Made executable script
Browse files Browse the repository at this point in the history
  • Loading branch information
sirnacnud committed Aug 5, 2016
1 parent 7758355 commit acad60d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
4 changes: 0 additions & 4 deletions parse-schema-validator/__main__.py

This file was deleted.

Empty file.
2 changes: 2 additions & 0 deletions parse_schema_validator/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from schema_validator import main
main()
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def get_arguments():
return arg_parser.parse_args()


def run():
def main():
global api_path
global connection

Expand Down
14 changes: 9 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
from distutils.core import setup
from setuptools import setup

setup(
name = 'parse-schema-validator',
packages = ['parse-schema-validator'],
version = '1.0.1',
packages = ['parse_schema_validator'],
entry_points = {
'console_scripts': ['parse-schema-validator=parse_schema_validator.schema_validator:main']
},
version = '1.0.2',
description = 'Tool for validating Parse classes on a Parse Server',
author = 'Duncan Cunningham',
author_email = '[email protected]',
license = "MIT",
license = 'MIT',
url = 'https://github.com/sirnacnud/parse-schema-validator',
download_url = 'https://github.com/sirnacnud/parse-schema-validator/archive/1.0.1.tar.gz',
download_url = 'https://github.com/sirnacnud/parse-schema-validator/archive/1.0.2.tar.gz',
keywords = ['parse', 'schema', 'validator'],
classifiers = [],
)

0 comments on commit acad60d

Please sign in to comment.