|
| 1 | +[metadata] |
| 2 | +name = jsonpatch |
| 3 | +description = Apply JSON-Patches (RFC 6902) |
| 4 | +long_description = file: README.md |
| 5 | +long_description_content_type = text/markdown |
| 6 | +classifiers = |
| 7 | + Development Status :: 5 - Production/Stable |
| 8 | + Environment :: Console |
| 9 | + Intended Audience :: Developers |
| 10 | + License :: OSI Approved :: BSD License |
| 11 | + Operating System :: OS Independent |
| 12 | + Programming Language :: Python |
| 13 | + Programming Language :: Python :: 2 |
| 14 | + Programming Language :: Python :: 2.7 |
| 15 | + Programming Language :: Python :: 3 |
| 16 | + Programming Language :: Python :: 3.5 |
| 17 | + Programming Language :: Python :: 3.6 |
| 18 | + Programming Language :: Python :: 3.7 |
| 19 | + Programming Language :: Python :: 3.8 |
| 20 | + Programming Language :: Python :: 3.9 |
| 21 | + Programming Language :: Python :: Implementation :: CPython |
| 22 | + Programming Language :: Python :: Implementation :: PyPy |
| 23 | + Topic :: Software Development :: Libraries |
| 24 | + Topic :: Utilities |
| 25 | +project_urls = |
| 26 | + Website = https://github.com/stefankoegl/python-json-patch |
| 27 | + Repository = https://github.com/stefankoegl/python-json-patch.git |
| 28 | + Documentation = https://python-json-patch.readthedocs.org/ |
| 29 | + PyPI = https://pypi.org/pypi/jsonpatch |
| 30 | + Tests = https://travis-ci.org/stefankoegl/python-json-patch |
| 31 | + Test Coverage = https://coveralls.io/r/stefankoegl/python-json-patch |
| 32 | + |
| 33 | +[options] |
| 34 | +packages = jsonpatch, jsonpatch.cli |
| 35 | +install_requires = jsonpointer>=1.9 |
| 36 | +python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.* |
| 37 | + |
| 38 | +[options.entry_points] |
| 39 | +console_scripts = |
| 40 | + jsondiff = jsonpatch.cli.jsondiff:main |
| 41 | + jsonpatch = jsonpatch.cli.jsonpatch:main |
| 42 | + |
1 | 43 | [bdist_wheel]
|
2 | 44 | universal = 1
|
0 commit comments