forked from faif/python-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
14 lines (13 loc) · 452 Bytes
/
Copy pathsetup.py
File metadata and controls
14 lines (13 loc) · 452 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from setuptools import find_packages, setup
setup(
name="patterns",
packages=find_packages(),
description="A collection of design patterns and idioms in Python.",
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)