forked from Pushwoosh/pushwoosh-python-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 795 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 795 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
from distutils.core import setup
setup(
name='pyPushwoosh',
version='0.1.0',
author='Konstantin Misyutin',
author_email='ikeeip@gmail.com',
maintainer='Konstantin Misyutin',
maintainer_email='ikeeip@gmail.com',
packages=['pypushwoosh', 'pypushwoosh.test'],
url='http://pushwoosh.com/',
keywords=['Pushwoosh'],
license='MIT',
description='Python client for Pushwoosh',
long_description=open('README.txt').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
]
)