Skip to content

Commit

Permalink
Add pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
borkweb committed Apr 27, 2024
1 parent 0584b55 commit 165ead8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]" }]
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"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
Expand Down

0 comments on commit 165ead8

Please sign in to comment.