File: setup.py

package info (click to toggle)
jstyleson 0.0.2-2
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 100 kB
  • sloc: python: 101; makefile: 6
file content (16 lines) | stat: -rw-r--r-- 592 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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",
)