From 9543d7b3609ad19351f61e41b4b38c94d8948a0c Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Sun, 17 Jul 2022 00:42:02 -0400 Subject: [PATCH 1/4] chore: update packaging metadata --- setup.cfg | 21 +++++++++++++++++++-- setup.py | 1 + 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index e003d05..7f92c25 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,13 +1,30 @@ [metadata] name = oxley -description = generate pydantic classes from JSONschema +description = Dynamically generate pydantic classes from JSONschema at runtime long_description = file: README.md, LICENSE long_description_content_type='text/markdown' + +url = https://github.com/jsstevenson/oxley +download_url = https://github.com/jsstevenson/oxley/releases +project_urls = + Bug Tracker = https://github.com/jsstevenson/oxley/issues + +author = James Stevenson +author_email = james.sharpsteen@gmail.com@gmail.com +maintainer = James Stevenson +maintainer_email = james.sharpsteen@gmail.com + +license = MIT +license_file = LICENSE + version = attr: oxley.version.__version__ keywords = typing, pydantic, JSONschema license = MIT classifiers = - Programming Language :: Python :: 3 + Programming Language :: Python :: 3 :: Only + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 [options] package = oxley diff --git a/setup.py b/setup.py index 6068493..eca0006 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,4 @@ +"""Initiate setup""" from setuptools import setup setup() From ef5f5f3b7aa9d8de34408684f24d63becf2299ac Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Sun, 17 Jul 2022 00:43:18 -0400 Subject: [PATCH 2/4] Fix errors --- oxley/version.py | 2 +- setup.cfg | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/oxley/version.py b/oxley/version.py index 434fc00..93ce562 100644 --- a/oxley/version.py +++ b/oxley/version.py @@ -1,2 +1,2 @@ """Provide version info.""" -__version__ = "0.0.1" +__version__ = "0.0.2" diff --git a/setup.cfg b/setup.cfg index 7f92c25..bf447c5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,7 +19,6 @@ license_file = LICENSE version = attr: oxley.version.__version__ keywords = typing, pydantic, JSONschema -license = MIT classifiers = Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3.8 From a13de1225357f1f66244217d894d1b589e149637 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Sun, 17 Jul 2022 01:07:22 -0400 Subject: [PATCH 3/4] Fix email --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index bf447c5..a0daafb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,7 +10,7 @@ project_urls = Bug Tracker = https://github.com/jsstevenson/oxley/issues author = James Stevenson -author_email = james.sharpsteen@gmail.com@gmail.com +author_email = james.sharpsteen@gmail.com maintainer = James Stevenson maintainer_email = james.sharpsteen@gmail.com From 66394f70571c10e6d19aff2a07d5d17da1d1b312 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Sun, 17 Jul 2022 01:16:34 -0400 Subject: [PATCH 4/4] Fix formatting --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index a0daafb..a744f80 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ name = oxley description = Dynamically generate pydantic classes from JSONschema at runtime long_description = file: README.md, LICENSE -long_description_content_type='text/markdown' +long_description_content_type = text/markdown url = https://github.com/jsstevenson/oxley download_url = https://github.com/jsstevenson/oxley/releases