From 165ead86cbaba92e5190ddeb91adc98810b17525 Mon Sep 17 00:00:00 2001 From: Matthew Batchelder Date: Sat, 27 Apr 2024 02:35:45 -0400 Subject: [PATCH] Add pyproject.toml --- pyproject.toml | 23 +++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9f9d191 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +# pyproject.toml + +[build-sysetm] +requires = ["setuptools>=61.0.0", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "pypipeline" +version = "1.0.0" +description = "A library that implements the Chain of Responsibility pattern." +readme = "README.md" +authors = [{ name = "Matthew Batchelder", email = "borkweb@gmail.com" }] +license = { file = "LICENSE" } +classifiers = [ + "License :: OSI Approved :: MIT License", + "Programming Language :: Python", + "Programming Language :: Python :: 3", +] +keywords = ["pipeline", "library"] +requires-python = ">=3.8" + +[project.urls] +Homepage = "https://github.com/borkweb/pypipeline" diff --git a/setup.py b/setup.py index 228e1a1..fbef9d0 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='pypipeline', packages=find_packages(), - version='0.1.0', + version='1.0.0', description='A library that implements the Chain of Responsibility pattern.', author='Matthew Batchelder', author_email='borkweb@gmail.com',