-
Notifications
You must be signed in to change notification settings - Fork 206
/
setup.py
75 lines (66 loc) · 2.3 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
69
70
71
72
73
74
75
"""
pyfcm
========
Python client for FCM - Firebase Cloud Messaging (Android, iOS and Web)
Project: https://github.com/olucurious/pyfcm
"""
import os
import sys
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
install_requires = [
"requests",
"urllib3>=1.26.0",
"google-auth>=2.22.0",
"aiohttp>=3.8.6",
]
tests_require = ["pytest"]
# We can't get the values using `from pyfcm import __meta__`, because this would import
# the other modules too and raise an exception (dependencies are not installed at this point yet).
meta = {}
exec(read("pyfcm/__meta__.py"), meta)
if sys.argv[-1] == "publish":
os.system("rm dist/*.gz dist/*.whl")
os.system("git tag -a %s -m 'v%s'" % (meta["__version__"], meta["__version__"]))
os.system("python -m build")
os.system("twine upload dist/*")
os.system("git push --tags")
sys.exit()
setup(
name=meta["__title__"],
version=meta["__version__"],
url=meta["__url__"],
license=meta["__license__"],
author=meta["__author__"],
author_email=meta["__email__"],
description=meta["__summary__"],
long_description=read("README.md"),
long_description_content_type="text/markdown",
packages=["pyfcm"],
install_requires=install_requires,
tests_require=tests_require,
test_suite="tests.get_tests",
extras_require={"test": tests_require},
keywords="firebase fcm apns ios gcm android push notifications",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Topic :: Communications",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
)