Skip to content

Commit 165ead8

Browse files
committed
Add pyproject.toml
1 parent 0584b55 commit 165ead8

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

pyproject.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# pyproject.toml
2+
3+
[build-sysetm]
4+
requires = ["setuptools>=61.0.0", "wheel"]
5+
build-backend = "setuptools.build_meta"
6+
7+
[project]
8+
name = "pypipeline"
9+
version = "1.0.0"
10+
description = "A library that implements the Chain of Responsibility pattern."
11+
readme = "README.md"
12+
authors = [{ name = "Matthew Batchelder", email = "borkweb@gmail.com" }]
13+
license = { file = "LICENSE" }
14+
classifiers = [
15+
"License :: OSI Approved :: MIT License",
16+
"Programming Language :: Python",
17+
"Programming Language :: Python :: 3",
18+
]
19+
keywords = ["pipeline", "library"]
20+
requires-python = ">=3.8"
21+
22+
[project.urls]
23+
Homepage = "https://github.com/borkweb/pypipeline"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
setup(
44
name='pypipeline',
55
packages=find_packages(),
6-
version='0.1.0',
6+
version='1.0.0',
77
description='A library that implements the Chain of Responsibility pattern.',
88
author='Matthew Batchelder',
99
author_email='borkweb@gmail.com',

0 commit comments

Comments
 (0)