Renamed project from notiier to runbullet

This commit is contained in:
Fabio Manganiello 2017-11-03 12:34:47 +01:00
parent 2837d0df70
commit 7b5813e151
12 changed files with 30 additions and 1 deletions

23
setup.py Normal file
View 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",
],
)