forked from genesluder/python-apns
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
24 lines (24 loc) · 581 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (24 loc) · 581 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
fromdistutils.coreimportsetup
setup(
name='gobiko.apns',
packages= [
'gobiko',
'gobiko.apns'
],
version='0.1.3',
description='A library for interacting with APNs using HTTP/2 and token-based authentication.',
author='Gene Sluder',
author_email='gene@gobiko.com',
url='https://github.com/genesluder/python-apns',
download_url='https://github.com/genesluder/python-apns/tarball/0.1.3',
keywords= [
'apns',
'push notifications',
],
classifiers= [],
install_requires=[
'cryptography',
'hyper',
'pyjwt',
],
)