forked from urbanairship/python-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 666 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(
name="urbanairship",
version="0.3",
author="Adam Lowry",
author_email="adam@urbanairship.com",
url="http://urbanairship.com/",
description="Python module for using the Urban Airship API",
long_description=open('README.rst').read(),
py_modules=["urbanairship"],
license='BSD License',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries'
],
)