Skip to content

Commit 3a2e901

Browse files
committed
Renaming to apns, pyapns already in use on pypi
1 parent 3829b1e commit 3a2e901

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

MANIFEST

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pyapns.py
1+
apns.py
22
setup.py
3-
README
3+
README.markdown

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A Python library for interacting with the Apple Push Notification service
55

66
## Sample usage
77

8-
from pyapns import APNs, Payload
8+
from apns import APNs, Payload
99

1010
apns = APNs(use_sandbox=True, cert_file='cert.pem', key_file='key.pem')
1111

pyapns.py renamed to apns.py

File renamed without changes.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from distutils.core import setup
22

33
setup(
4-
name = 'pyapns',
4+
name = 'apns',
55
version = '1.0',
66
py_modules = ['pyapns'],
77
url = 'http://www.goosoftware.co.uk/',

tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from pyapns import *
1+
from apns import *
22
from random import random
33

44
import hashlib

0 commit comments

Comments
 (0)