forked from urbanairship/python-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 952 Bytes
/
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
try:
from setuptools import setup
except (ImportError):
from distutils.core import setup
__about__ = {}
with open("urbanairship/__about__.py") as fp:
exec(fp, None, __about__)
setup(
name="urbanairship",
version=__about__["__version__"],
author="Adam Lowry",
author_email="[email protected]",
url="http://urbanairship.com/",
description="Python package for using the Urban Airship API",
long_description=open('README.rst').read(),
packages=["urbanairship", "urbanairship.push", "urbanairship.devices"],
license='BSD License',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries'
],
install_requires=[
'requests>=1.2',
],
)