forked from urbanairship/python-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.1 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
38
39
40
try:
from setuptools import setup
except (ImportError):
from distutils.core import setup
__about__ = {}
with open("urbanairship/__about__.py") as fp:
exec(fp.read(), None, __about__)
setup(
name="urbanairship",
version=__about__["__version__"],
author="Urban Airship Customer Engineering",
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",
"urbanairship.reports",
"urbanairship.automation"
],
license='BSD License',
classifiers=[
'Development Status :: 5 - Production/Stable',
'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',
'six'
],
)