diff --git a/LICENSE b/LICENSE index 4134a77..7cbe35c 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/MANIFEST.in b/MANIFEST.in index 926cc7b..3e677d0 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ -include README.rst +include README.md include LICENSE.txt diff --git a/json2html/__init__.py b/json2html/__init__.py index 645d17e..fc739c7 100644 --- a/json2html/__init__.py +++ b/json2html/__init__.py @@ -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 * diff --git a/json2html/jsonconv.py b/json2html/jsonconv.py index 9ef8c73..dd27134 100644 --- a/json2html/jsonconv.py +++ b/json2html/jsonconv.py @@ -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 diff --git a/setup.cfg b/setup.cfg index de6a9db..fc4253a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,3 @@ [metadata] -description-file = README.rst -max-line-length = 120 \ No newline at end of file +description_file = README.md +max_line_length = 120 diff --git a/setup.py b/setup.py index 43b404a..d35259d 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/test/__init__.py b/test/__init__.py index 97e5354..1415654 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -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'