-
Notifications
You must be signed in to change notification settings - Fork 65
/
setup.py
38 lines (35 loc) · 1.12 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
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="Airship Tools",
author_email="[email protected]",
url="https://airship.com/",
description="Python package for using the Airship API",
long_description=open("README.rst").read(),
packages=[
"urbanairship",
"urbanairship.push",
"urbanairship.devices",
"urbanairship.reports",
"urbanairship.automation",
"urbanairship.experiments",
"urbanairship.custom_events",
],
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", "backoff>=1.11"],
)