-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1021 Bytes
/
Copy pathsetup.py
File metadata and controls
43 lines (38 loc) · 1021 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
"""
Try to make a package
"""
from setuptools import setup
def desc():
with open('README.rst') as fp:
info = fp.read()
return info
setup(
name='Flask-APNS',
version='0.1.0',
url='https://github.com/gilles/flask-apns/',
license='MIT',
author='Gilles Devaux',
author_email='gilles.devaux@gmail.com',
description='Send APNS messages from flask',
long_description=desc(),
packages=['flask_apns'],
platforms='any',
install_requires=[
'Flask>=0.7',
'apns-client>=0.1'
],
tests_require=[
'nose==1.3.1',
'MiniMock==1.2.8'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
test_suite='nose.collector'
)