Skip to content

Commit 676bf00

Browse files
committed
1.1.5 update / make netstorage directory
1 parent 13c9f1c commit 676bf00

File tree

7 files changed

+11
-5
lines changed

7 files changed

+11
-5
lines changed

akamai/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
# -*- coding: utf-8 -*-
2+
13
__import__('pkg_resources').declare_namespace(__name__)

akamai/netstorage/__init__.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# -*- coding: utf-8 -*-
2+
3+
from .netstorage import Netstorage
4+
5+
6+
__all__=['Netstorage']

akamai/netstorage.py renamed to akamai/netstorage/netstorage.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# -*- coding: utf-8 -*-
22

3-
43
# Original author: Astin Choi <achoi@akamai.com>
54

65
# Copyright 2016 Akamai Technologies http://developer.akamai.com.

cms_netstorage.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# -*- coding: utf-8 -*-
22

3-
43
# Original author: Astin Choi <achoi@akamai.com>
54

65
# Copyright 2016 Akamai Technologies http://developer.akamai.com.

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal = 1

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# -*- coding: utf-8 -*-
22

3-
43
from setuptools import setup
54

65

@@ -9,7 +8,7 @@
98

109
setup (
1110
name = 'netstorageapi',
12-
version = '1.1.4',
11+
version = '1.1.5',
1312
description = 'Akamai Netstorage API for Python',
1413
long_description = readme,
1514
packages = ['akamai'],

test_netstorage.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# -*- coding: utf-8 -*-
22

3-
43
# Original author: Astin Choi <achoi@akamai.com>
54

65
# Copyright 2016 Akamai Technologies http://developer.akamai.com.

0 commit comments

Comments
 (0)