Skip to content

Commit

Permalink
1.3.0 - python3 finally works via pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
mahtin committed Oct 21, 2016
1 parent 110870b commit 460d77b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CloudFlare/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
except:
pass

__version__ = '1.2.6'
__version__ = '1.3.0'
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
include LICENSE
recursive-include examples *.sh *.py
#recursive-include cli4 *.man
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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={
Expand All @@ -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'
]
)

Expand Down

0 comments on commit 460d77b

Please sign in to comment.