forked from platypush/platypush
Renamed project from notiier to runbullet
This commit is contained in:
parent
2837d0df70
commit
7b5813e151
12 changed files with 30 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@
|
|||
*.pyc
|
||||
__pycache__
|
||||
config.yaml
|
||||
build/
|
||||
|
|
5
README.md
Normal file
5
README.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
Runbullet
|
||||
=========
|
||||
|
||||
Execute any command or custom complex logic on your devices, wherever they are, using your PushBullet account.
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
pushbullet:
|
||||
token: your_pushbullet_token_here
|
||||
device: your_pushbullet_device_here # Virtual PushBullet device linked to notifier
|
||||
device: your_pushbullet_device_here # Virtual PushBullet device linked to runbullet
|
||||
|
||||
# device_id: <your_device_id> (default: current hostname)
|
||||
# debug: True (default: False)
|
23
setup.py
Normal file
23
setup.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
import os
|
||||
from setuptools import setup
|
||||
|
||||
def read(fname):
|
||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||
|
||||
setup(
|
||||
name = "runbullet",
|
||||
version = "0.1",
|
||||
author = "Fabio Manganiello",
|
||||
author_email = "info@fabiomanganiello.com",
|
||||
description = ("Runbullet service"),
|
||||
license = "BSD",
|
||||
keywords = "pushbullet notifications automation",
|
||||
url = "https://www.fabiomanganiello.com",
|
||||
packages=['runbullet'],
|
||||
long_description=read('README.md'),
|
||||
classifiers=[
|
||||
"Topic :: Utilities",
|
||||
"License :: OSI Approved :: BSD License",
|
||||
],
|
||||
)
|
||||
|
Loading…
Reference in a new issue