Skip to content

Commit bd6fd0e

Browse files
author
derwentx
committed
uploaded v1.2.2 to pypi
1 parent a82cd42 commit bd6fd0e

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ Changelog
222222
223223
1.2.2 - 2017/06/16
224224
~~~~~~~~~~~~~~~~~~
225-
- support basic auth without https
226-
- rename oauth module to auth (since auth covers oauth and basic auth)
227-
- tested with latest versions of WP and WC
225+
- support basic auth without https
226+
- rename oauth module to auth (since auth covers oauth and basic auth)
227+
- tested with latest versions of WP and WC
228228
229229
1.2.1 - 2016/12/13
230230
~~~~~~~~~~~~~~~~~~

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import os
77
import re
88

9-
109
# Get version from __init__.py file
1110
VERSION = ""
1211
with open("wordpress/__init__.py", "r") as fd:
@@ -36,9 +35,10 @@
3635
platforms=['any'],
3736
install_requires=[
3837
"requests",
39-
"ordereddict"
38+
"ordereddict",
39+
"beautifulsoup4"
4040
],
41-
classifiers=(
41+
classifiers=[
4242
"Development Status :: 5 - Production/Stable",
4343
"Intended Audience :: Developers",
4444
"Natural Language :: English",
@@ -50,5 +50,6 @@
5050
"Programming Language :: Python :: 3.3",
5151
"Programming Language :: Python :: 3.4",
5252
"Topic :: Software Development :: Libraries :: Python Modules"
53-
),
53+
],
54+
keywords='python wordpress woocommerce api development'
5455
)

0 commit comments

Comments
 (0)