Skip to content

Commit

Permalink
chore: update year in license and files
Browse files Browse the repository at this point in the history
  • Loading branch information
softvar committed Jun 27, 2024
1 parent 311268f commit 7c95425
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2013-2021 Varun Malhotra
Copyright (c) 2013-2024 Varun Malhotra

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include README.rst
include README.md
include LICENSE.txt
2 changes: 1 addition & 1 deletion json2html/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'''
python wrapper for JSON to HTML-Table convertor
(c) 2013-2021 Varun Malhotra. MIT License
(c) 2013-2024 Varun Malhotra. MIT License
'''

from .jsonconv import *
Expand Down
2 changes: 1 addition & 1 deletion json2html/jsonconv.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
JSON 2 HTML Converter
=====================
(c) Varun Malhotra 2013-2021
(c) Varun Malhotra 2013-2024
Source Code: https://github.com/softvar/json2html
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[metadata]
description-file = README.rst
max-line-length = 120
description_file = README.md
max_line_length = 120
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
from setuptools import setup


setup(
name = 'json2html',
packages = ['json2html'],
version = '1.3.0',
description = 'JSON to HTML Table Representation',
long_description=open('README.rst').read(),
long_description=open('README.md').read(),
author = 'Varun Malhotra',
author_email = 'varun2902@gmail.com',
url = 'https://github.com/softvar/json2html',
Expand Down
2 changes: 1 addition & 1 deletion test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Unit Test Cases for JSON2HTML
Description - python wrapper for converting JSON to HTML Table format
(c) 2013 Varun Malhotra. MIT License
(c) 2013-2024 Varun Malhotra. MIT License
'''

__author__ = 'Varun Malhotra'
Expand Down

0 comments on commit 7c95425

Please sign in to comment.