1+ [build-system ]
2+ requires = [" setuptools >= 42.0.0" ]
3+ build-backend = " setuptools.build_meta"
4+
5+ [project ]
6+ name = " json2html"
7+ authors = [{ name = " Varun Malhotra" , email = " varun2902@gmail.com" }]
8+ description = " JSON to HTML Table Representation"
9+ readme = " README.md"
10+ requires-python = " >=3.6"
11+ keywords = [" json" , " HTML" , " Table" ]
12+ license = " MIT"
13+ license-files = [" LICENSE" ]
14+ classifiers = [
15+ " Programming Language :: Python :: 3.6" ,
16+ " Programming Language :: Python :: 3.7" ,
17+ " Programming Language :: Python :: 3.8" ,
18+ " Programming Language :: Python :: 3.9" ,
19+ " Programming Language :: Python :: 3.10" ,
20+ " Programming Language :: Python :: 3.11" ,
21+ " Programming Language :: Python :: 3.12" ,
22+ " Programming Language :: Python :: 3.13" ,
23+ ' Programming Language :: Python :: Implementation :: CPython' ,
24+ ]
25+ dynamic = [" version" ]
26+
27+ [project .urls ]
28+ Homepage = " https://github.com/softvar/json2html"
29+ Repository = " https://github.com/softvar/json2html.git"
30+ Issues = " https://github.com/softvar/json2html/issues"
31+
32+ [tool .setuptools ]
33+ packages = [" json2html" ]
34+
35+ [tool .setuptools .dynamic ]
36+ version = {attr = " json2html.__version__" }
0 commit comments