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
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…
Add table
Add a link
Reference in a new issue