Skip to content

Commit 7e2d1e5

Browse files
Updated setup.py
Includes python_requires, keyworkds and more.
1 parent 8e59b68 commit 7e2d1e5

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
description="A Python wrapper for the WooCommerce REST API",
2828
long_description=README,
2929
author="Claudio Sanches @ Automattic",
30+
author_email="claudio+pypi@automattic.com"
3031
url="https://github.com/woocommerce/wc-api-python",
3132
license="MIT License",
3233
packages=[
@@ -35,9 +36,9 @@
3536
include_package_data=True,
3637
platforms=['any'],
3738
install_requires=[
38-
"requests",
39-
"ordereddict"
39+
"requests"
4040
],
41+
python_requires=">=3.6",
4142
classifiers=[
4243
"Development Status :: 5 - Production/Stable",
4344
"Intended Audience :: Developers",
@@ -50,4 +51,10 @@
5051
"Programming Language :: Python :: 3.9",
5152
"Topic :: Software Development :: Libraries :: Python Modules"
5253
],
54+
keywords='woocommerce rest api',
55+
project_urls={
56+
'Documentation': 'https://woocommerce.github.io/woocommerce-rest-api-docs/?python#libraries-and-tools',
57+
'Source': 'https://github.com/woocommerce/wc-api-python',
58+
'Tracker': 'https://github.com/woocommerce/wc-api-python/issues',
59+
},
5360
)

0 commit comments

Comments
 (0)