diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..224a779 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5728281 --- /dev/null +++ b/setup.py @@ -0,0 +1,15 @@ +from distutils.core import setup +setup( + name = 'parse-schema-validator', + packages = ['parse-schema-validator'], + version = '1.0.0', + description = 'Tool for validating Parse classes on a Parse Server', + author = 'Duncan Cunningham', + author_email = 'duncanc4@gmail.com', + license = "MIT", + url = 'https://github.com/sirnacnud/parse-schema-validator', + download_url = 'https://github.com/sirnacnud/parse-schema-validator/archive/1.0.0.tar.gz', + keywords = ['parse', 'schema', 'validator'], + classifiers = [], + data_files = [("", ["license"])] +) \ No newline at end of file