Skip to content

Commit

Permalink
Add setup files for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
sirnacnud committed Aug 5, 2016
1 parent dfff1a5 commit b2d13c6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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 = '[email protected]',
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"])]
)

0 comments on commit b2d13c6

Please sign in to comment.