platypush/setup.py

78 lines
2.4 KiB
Python
Raw Normal View History

2017-11-03 12:41:15 +01:00
#!/usr/bin/env python
2017-11-03 15:06:29 +01:00
import errno
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
2017-11-03 15:06:29 +01:00
def pkg_files(dir):
paths = []
for (path, dirs, files) in os.walk(dir):
for file in files:
paths.append(os.path.join('..', path, file))
return paths
def create_etc_dir():
2017-12-11 20:30:57 +01:00
path = '/etc/platypush'
2017-11-03 15:06:29 +01:00
try:
os.makedirs(path)
except OSError as e:
2017-11-03 23:14:19 +01:00
if isinstance(e, PermissionError):
2017-12-11 20:30:57 +01:00
print('WARNING: Could not create /etc/platypush')
2017-11-03 23:14:19 +01:00
elif e.errno == errno.EEXIST and os.path.isdir(path):
2017-11-03 15:06:29 +01:00
pass
else:
raise
2017-12-11 20:30:57 +01:00
plugins = pkg_files('platypush/plugins')
backend = pkg_files('platypush/backend')
2017-11-03 15:06:29 +01:00
create_etc_dir()
setup(
2017-12-11 20:30:57 +01:00
name = "platypush",
2018-01-04 02:46:23 +01:00
version = "0.6.4",
author = "Fabio Manganiello",
author_email = "info@fabiomanganiello.com",
2017-12-11 20:30:57 +01:00
description = ("Platypush service"),
2017-11-03 18:06:58 +01:00
license = "MIT",
2017-11-03 22:54:08 +01:00
python_requires = '>= 3',
keywords = "pushbullet notifications automation",
2017-12-11 20:30:57 +01:00
url = "https://github.com/BlackLight/platypush",
packages = find_packages(),
2017-11-03 22:54:08 +01:00
entry_points = {
'console_scripts': [
2018-01-04 02:45:23 +01:00
'platypush=platypush.__main__',
'pusher=platypush.pusher.__main__',
2017-11-03 22:54:08 +01:00
],
},
2017-11-03 15:06:29 +01:00
data_files = [
2017-12-11 20:30:57 +01:00
('/etc/platypush', ['platypush/config.example.yaml'])
2017-11-03 15:06:29 +01:00
],
long_description = read('README.md'),
classifiers = [
"Topic :: Utilities",
2017-11-03 23:09:19 +01:00
"License :: OSI Approved :: MIT License",
2017-11-03 22:54:08 +01:00
"Development Status :: 3 - Alpha",
],
2017-11-03 15:06:29 +01:00
install_requires = [
'pyyaml',
'requires',
2017-11-03 22:54:08 +01:00
],
extras_require = {
'Support for Apache Kafka backend': ['kafka-python'],
'Support for Pushbullet backend': ['requests', 'websocket-client'],
2018-01-04 02:45:23 +01:00
'Support for HTTP backend': ['flask'],
'Support for Philips Hue plugin': ['phue'],
2017-12-16 02:27:51 +01:00
'Support for MPD/Mopidy music server plugin': ['python-mpd2'],
'Support for Belkin WeMo Switch plugin': ['ouimeaux'],
2017-12-27 00:39:06 +01:00
'Support for text2speech plugin': ['mplayer'],
'Support for OMXPlayer plugin': ['omxplayer'],
'Support for YouTube in the OMXPlayer plugin': ['youtube-dl'],
2018-01-03 02:23:25 +01:00
'Support for Google Assistant': ['google-assistant-sdk[samples]'],
2018-01-04 02:45:23 +01:00
# 'Support for Flic buttons': ['-e git+https://github.com/50ButtonsEach/fliclib-linux-hci']
},
)