forked from platypush/platypush
setup.py
This commit is contained in:
parent
d75f319ea6
commit
6637312de0
1 changed files with 10 additions and 3 deletions
13
setup.py
13
setup.py
|
@ -30,16 +30,22 @@ create_etc_dir()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "runbullet",
|
name = "runbullet",
|
||||||
version = "0.1",
|
version = "0.2.0.dev1",
|
||||||
author = "Fabio Manganiello",
|
author = "Fabio Manganiello",
|
||||||
author_email = "info@fabiomanganiello.com",
|
author_email = "info@fabiomanganiello.com",
|
||||||
description = ("Runbullet service"),
|
description = ("Runbullet service"),
|
||||||
license = "MIT",
|
license = "MIT",
|
||||||
|
python_requires = '>= 3',
|
||||||
keywords = "pushbullet notifications automation",
|
keywords = "pushbullet notifications automation",
|
||||||
url = "https://github.com/BlackLight/runbullet",
|
url = "https://github.com/BlackLight/runbullet",
|
||||||
packages = ['runbullet'],
|
packages = ['runbullet'],
|
||||||
package_data = {'': plugins},
|
package_data = {'': plugins},
|
||||||
scripts = ['runbullet/bin/pusher', 'runbullet/bin/runbullet'],
|
scripts = ['runbullet/bin/pusher'],
|
||||||
|
entry_points = {
|
||||||
|
'console_scripts': [
|
||||||
|
'runbullet=runbullet:main',
|
||||||
|
],
|
||||||
|
},
|
||||||
data_files = [
|
data_files = [
|
||||||
('/etc/runbullet', ['runbullet/config.example.yaml'])
|
('/etc/runbullet', ['runbullet/config.example.yaml'])
|
||||||
],
|
],
|
||||||
|
@ -47,9 +53,10 @@ setup(
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Topic :: Utilities",
|
"Topic :: Utilities",
|
||||||
"License :: OSI Approved :: MIT",
|
"License :: OSI Approved :: MIT",
|
||||||
|
"Development Status :: 3 - Alpha",
|
||||||
],
|
],
|
||||||
install_requires = [
|
install_requires = [
|
||||||
'pyyaml'
|
'pyyaml'
|
||||||
]
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue