Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit 460d77b

Browse files
committed
1.3.0 - python3 finally works via pip install
1 parent 110870b commit 460d77b

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

CloudFlare/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
except:
66
pass
77

8-
__version__ = '1.2.6'
8+
__version__ = '1.3.0'

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include LICENSE
22
recursive-include examples *.sh *.py
3+
#recursive-include cli4 *.man

setup.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def main():
2626
#package_dir={'CloudFlare/examples': 'examples'},
2727
#package_data={'cloudflare-examples': ["examples/*"]},
2828
include_package_data=True,
29-
data_files = [('man/man1', ['cli4/cli4.man'])],
29+
#data_files = [('man/man1', ['cli4/cli4.man'])],
3030
install_requires=['requests', 'logger', 'future', 'pyyaml'],
3131
keywords='cloudflare',
3232
entry_points={
@@ -41,10 +41,13 @@ def main():
4141
'License :: OSI Approved :: MIT License',
4242
'Programming Language :: Python :: 2',
4343
'Programming Language :: Python :: 2.6',
44-
'Programming Language :: Python :: 2.7'
45-
# 'Programming Language :: Python :: 3',
46-
# 'Programming Language :: Python :: 3.4',
47-
# 'Programming Language :: Python :: 3.5',
44+
'Programming Language :: Python :: 2.7',
45+
'Programming Language :: Python :: 3',
46+
'Programming Language :: Python :: 3.2',
47+
'Programming Language :: Python :: 3.3',
48+
'Programming Language :: Python :: 3.4',
49+
'Programming Language :: Python :: 3.5',
50+
'Programming Language :: Python :: 3.6'
4851
]
4952
)
5053

0 commit comments

Comments
 (0)