FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-patterns/setup.py at master · lovexiaov/python-patterns · GitHub
lovexiaov
/
python-patterns
Public
forked from
faif/python-patterns
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-patterns
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
16 lines (15 loc) · 542 Bytes
Breadcrumbs
python-patterns
/
setup.py
Copy path
File metadata and controls
16 lines (15 loc) · 542 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 :: 2"
,
"Programming Language :: Python :: 2.7"
,
"Programming Language :: Python :: 3"
,
"Programming Language :: Python :: 3.6"
,
"Programming Language :: Python :: 3.7"
,
"Programming Language :: Python :: 3.8"
,
"Programming Language :: Python :: 3.9"
,
],
)
Back
|
FazBrowse Home
|
New Git URL