from setuptools import setup

setup(
    name='jstyleson',
    py_modules=['jstyleson'],
    version='0.0.2',
    description='Library to parse JSON with js-style comments.',
    author='linjackson',
    author_email='linjackson78@gmail.com',
    url='https://github.com/linjackson78/jstyleson',
    keywords=['json', 'comment', 'javascript', 'parse'],
    classifiers=['Development Status :: 3 - Alpha', 'License :: OSI Approved :: MIT License',
                 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5'],
    license='MIT',
    test_suite="tests",
)
