-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pattern_kit"
version = "2.0.0"
description = "A modern Python library of reusable software design patterns."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name="Mickael Burguet" }
]
keywords = [
"python", "design patterns", "software architecture",
"singleton", "factory", "object pool",
"observer", "event emitter", "pipeline",
"service locator", "creational patterns",
"behavioral patterns", "architectural patterns",
"developer tools", "pattern library"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Code Generators",
]
[project.urls]
Homepage = "https://github.com/rundef/pattern_kit"
Repository = "https://github.com/rundef/pattern_kit"
Issues = "https://github.com/rundef/pattern_kit/issues"
Documentation = "https://pattern-kit.readthedocs.io/en/latest/"