File tree Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 11# RESTful Nested-Diff
22
3- REST API and web UI for [ Nested-Diff.py] ( https://github.com/mr-mixas/Nested-Diff.py )
3+ REST API and web UI for [ Nested-Diff.py] ( https://github.com/mr-mixas/Nested-Diff.py ) ,
4+ recursive diff and patch for nested structures.
45
56** [ Live Demo] ( https://nesteddiff.pythonanywhere.com/ ) **
67
8+ [ ![ PyPi] ( https://img.shields.io/pypi/v/nested_diff_restful.svg )] ( https://pypi.python.org/pypi/nested_diff_restful )
9+ [ ![ Tests] ( https://github.com/mr-mixas/Nested-Diff-RESTful/actions/workflows/tests.yml/badge.svg )] ( https://github.com/mr-mixas/Nested-Diff-RESTful/actions?query=branch%3Amaster )
10+ [ ![ Supported Python versions] ( https://img.shields.io/pypi/pyversions/nested_diff_restful.svg )] ( https://pypi.org/project/nested_diff_restful/ )
11+ [ ![ License] ( https://img.shields.io/pypi/l/nested_diff_restful.svg )] ( https://github.com/mr-mixas/Nested-Diff-RESTful/blob/devel/LICENSE )
12+
713## Install
814
915``` sh
@@ -19,7 +25,12 @@ nested_diff_restful --bind 127.0.0.1:8080 --workers=4
1925## Run tests
2026
2127``` sh
22- pip install -e .[test]
28+ # prepare environment
29+ python3 -m venv venv && \
30+ . venv/bin/activate && \
31+ pip install -e .[test]
32+
33+ # run tests
2334pytest
2435```
2536
Original file line number Diff line number Diff line change 1414
1515"""REST API and web UI for nested-diff"""
1616
17- __version__ = '1.0.1 '
17+ __version__ = '1.1.0 '
1818__author__ = 'Michael Samoglyadov'
1919__license__ = 'Apache License, Version 2.0'
2020__website__ = 'https://github.com/mr-mixas/Nested-Diff-RESTful'
Original file line number Diff line number Diff line change @@ -15,6 +15,12 @@ classifiers = [
1515 ' Intended Audience :: System Administrators' ,
1616 ' License :: OSI Approved :: Apache Software License' ,
1717 ' Operating System :: OS Independent' ,
18+ ' Programming Language :: Python :: 3 :: Only' ,
19+ ' Programming Language :: Python :: 3.8' ,
20+ ' Programming Language :: Python :: 3.9' ,
21+ ' Programming Language :: Python :: 3.10' ,
22+ ' Programming Language :: Python :: 3.11' ,
23+ ' Programming Language :: Python :: 3.12' ,
1824]
1925dynamic = [' version' , ' description' ]
2026dependencies = [
You can’t perform that action at this time.
0 commit comments