File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change
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"
Original file line number Diff line number Diff line change 3
3
setup (
4
4
name = 'pypipeline' ,
5
5
packages = find_packages (),
6
- version = '0.1 .0' ,
6
+ version = '1.0 .0' ,
7
7
description = 'A library that implements the Chain of Responsibility pattern.' ,
8
8
author = 'Matthew Batchelder' ,
9
9
author_email = 'borkweb@gmail.com' ,
You can’t perform that action at this time.
0 commit comments