From 6637312de0bd08ee780d2c0c73dc7adafe31bdb2 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Fri, 3 Nov 2017 22:54:08 +0100 Subject: [PATCH] setup.py --- setup.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 872eda84..b81a7768 100755 --- a/setup.py +++ b/setup.py @@ -30,16 +30,22 @@ create_etc_dir() setup( name = "runbullet", - version = "0.1", + version = "0.2.0.dev1", author = "Fabio Manganiello", author_email = "info@fabiomanganiello.com", description = ("Runbullet service"), license = "MIT", + python_requires = '>= 3', keywords = "pushbullet notifications automation", url = "https://github.com/BlackLight/runbullet", packages = ['runbullet'], package_data = {'': plugins}, - scripts = ['runbullet/bin/pusher', 'runbullet/bin/runbullet'], + scripts = ['runbullet/bin/pusher'], + entry_points = { + 'console_scripts': [ + 'runbullet=runbullet:main', + ], + }, data_files = [ ('/etc/runbullet', ['runbullet/config.example.yaml']) ], @@ -47,9 +53,10 @@ setup( classifiers = [ "Topic :: Utilities", "License :: OSI Approved :: MIT", + "Development Status :: 3 - Alpha", ], install_requires = [ 'pyyaml' - ] + ], )