From 460d77bad7b255718e3986090b75458c6eef49a0 Mon Sep 17 00:00:00 2001 From: Martin Levy Date: Fri, 21 Oct 2016 14:06:03 -0700 Subject: [PATCH] 1.3.0 - python3 finally works via pip install --- CloudFlare/__init__.py | 2 +- MANIFEST.in | 1 + setup.py | 13 ++++++++----- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CloudFlare/__init__.py b/CloudFlare/__init__.py index 847f86c..5da6339 100644 --- a/CloudFlare/__init__.py +++ b/CloudFlare/__init__.py @@ -5,4 +5,4 @@ except: pass -__version__ = '1.2.6' +__version__ = '1.3.0' diff --git a/MANIFEST.in b/MANIFEST.in index 7ce82e5..6f1b3ea 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include LICENSE recursive-include examples *.sh *.py +#recursive-include cli4 *.man diff --git a/setup.py b/setup.py index dcddeb4..5780b3e 100755 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def main(): #package_dir={'CloudFlare/examples': 'examples'}, #package_data={'cloudflare-examples': ["examples/*"]}, include_package_data=True, - data_files = [('man/man1', ['cli4/cli4.man'])], + #data_files = [('man/man1', ['cli4/cli4.man'])], install_requires=['requests', 'logger', 'future', 'pyyaml'], keywords='cloudflare', entry_points={ @@ -41,10 +41,13 @@ def main(): 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7' - # 'Programming Language :: Python :: 3', - # 'Programming Language :: Python :: 3.4', - # 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6' ] )