diff options
author | Julian Berman <Julian+git@GrayVines.com> | 2012-01-01 21:42:40 -0500 |
---|---|---|
committer | Julian Berman <Julian+git@GrayVines.com> | 2012-01-01 21:42:40 -0500 |
commit | 1f0e66bf614fda68d0809b9fd7fae8e240cff618 (patch) | |
tree | 79aa53f4c24519384ddea52f0f8c926884f4087f | |
parent | b44a6c98f4853bb573c964f3e7a5fe694e95e7e8 (diff) | |
download | jsonschema-1f0e66bf614fda68d0809b9fd7fae8e240cff618.tar.gz |
Fixed setup.py
-rw-r--r-- | setup.py | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -1,12 +1,15 @@ from distutils.core import setup +from jsonschema import __version__ + setup( name="jsonschema", - version = "0.1dev", - author = "Julian Berman", - author_email = "Julian@GrayVines.com", - description = "An implementation of JSON-Schema validation for Python", - license = "MIT/X", - url = "http://github.com/Julian/jsonschema", + version=__version__, + py_modules=["jsonschema"], + author="Julian Berman", + author_email="Julian@GrayVines.com", + description="An implementation of JSON-Schema validation for Python", + license="MIT/X", + url="http://github.com/Julian/jsonschema", ) |