Skip to content

Commit 7c95425

Browse files
committed
chore: update year in license and files
1 parent 311268f commit 7c95425

File tree

7 files changed

+8
-9
lines changed

7 files changed

+8
-9
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2013-2021 Varun Malhotra
1+
Copyright (c) 2013-2024 Varun Malhotra
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
include README.rst
1+
include README.md
22
include LICENSE.txt

json2html/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'''
22
python wrapper for JSON to HTML-Table convertor
3-
(c) 2013-2021 Varun Malhotra. MIT License
3+
(c) 2013-2024 Varun Malhotra. MIT License
44
'''
55

66
from .jsonconv import *

json2html/jsonconv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
JSON 2 HTML Converter
55
=====================
66
7-
(c) Varun Malhotra 2013-2021
7+
(c) Varun Malhotra 2013-2024
88
Source Code: https://github.com/softvar/json2html
99
1010

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[metadata]
2-
description-file = README.rst
3-
max-line-length = 120
2+
description_file = README.md
3+
max_line_length = 120

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
from setuptools import setup
22

3-
43
setup(
54
name = 'json2html',
65
packages = ['json2html'],
76
version = '1.3.0',
87
description = 'JSON to HTML Table Representation',
9-
long_description=open('README.rst').read(),
8+
long_description=open('README.md').read(),
109
author = 'Varun Malhotra',
1110
author_email = '[email protected]',
1211
url = 'https://github.com/softvar/json2html',

test/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Unit Test Cases for JSON2HTML
33
44
Description - python wrapper for converting JSON to HTML Table format
5-
(c) 2013 Varun Malhotra. MIT License
5+
(c) 2013-2024 Varun Malhotra. MIT License
66
'''
77

88
__author__ = 'Varun Malhotra'

0 commit comments

Comments
 (0)