-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·37 lines (33 loc) · 1.16 KB
/
setup.py
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
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__author__ = 'Alexey Goditskiy <[email protected]>'
__version__ = '0.5.1'
setup(
name='python-bada-push',
version=__version__,
# Package dependencies.
install_requires=['requests==1.1.0', 'simplejson==3.1.0'],
# Metadata for PyPI.
author='Alexey Goditskiy',
author_email='[email protected]',
license='BSD',
url='https://bitbucket.org/godickii/python-samsung-bada-push-client',
keywords='python samsung bada push messaging',
description='Python module for push messaging service for Samsung Bada.',
long_description=open(os.path.abspath(os.path.join(os.path.dirname(__file__), 'README.md')), 'rb').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications :: Telephony',
'Topic :: Internet'
],
packages=['bada_push'],
platforms='any',
)