-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathsetup.py
68 lines (63 loc) · 2.13 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
from setuptools import setup
__about__: dict[str, str] = {}
with open("urbanairship/__about__.py") as fp:
exec(fp.read(), None, __about__)
# Read long description from README
with open("README.rst", encoding="utf-8") as f:
long_description = f.read()
# Define test requirements
test_requirements = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"mock>=5.0.0",
]
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=long_description,
long_description_content_type="text/x-rst",
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",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
],
python_requires=">=3.10",
install_requires=["requests>=2.32", "six", "backoff>=2.2.1", "pyjwt>=2.8.0"],
tests_require=test_requirements,
extras_require={
"test": test_requirements,
"dev": test_requirements + ["black", "isort", "flake8"],
},
package_data={
"urbanairship": ["py.typed"],
},
project_urls={
"Documentation": "https://docs.airship.com/",
"Source": "https://github.com/urbanairship/python-library",
"Tracker": "https://github.com/urbanairship/python-library/issues",
},
test_suite="tests",
)