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
13 lines (12 loc) · 406 Bytes
/
Copy pathsetup.py
File metadata and controls
13 lines (12 loc) · 406 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
from setuptools import setup
setup(
name="python-patterns",
description="A collection of design patterns and idioms in Python.",
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)