forked from tbook/push_receiver
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·31 lines (27 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
#!/bin/env python
from setuptools import setup, find_packages
push_receiver_classifiers = [
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: Public Domain",
"Topic :: Software Development :: Libraries"
]
with open("README.rst", "r") as f:
push_receiver_readme = f.read()
setup(
name="rustPlusPushReceiver",
version="0.6.1",
author="Franc[e]sco & olijeffers0n",
url="https://github.com/olijeffers0n/push_receiver",
packages=find_packages("."),
description="Subscribe to GCM/FCM and receive notifications",
long_description=push_receiver_readme,
license="Unlicense",
classifiers=push_receiver_classifiers,
keywords="fcm gcm push notification firebase google",
install_requires=["oscrypto", "protobuf", "cryptography", "betterproto", "requests"],
extras_require={
"example": ["appdirs"]
}
)