2017-11-03 12:41:15 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2017-11-03 15:06:29 +01:00
|
|
|
import errno
|
2017-11-03 12:34:47 +01:00
|
|
|
import os
|
2017-11-09 05:04:48 +01:00
|
|
|
from setuptools import setup, find_packages
|
2017-11-03 12:34:47 +01:00
|
|
|
|
|
|
|
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()
|
|
|
|
|
2017-11-03 12:34:47 +01:00
|
|
|
setup(
|
2017-12-11 20:30:57 +01:00
|
|
|
name = "platypush",
|
2017-12-13 01:17:52 +01:00
|
|
|
version = "0.3.1",
|
2017-11-03 12:34:47 +01:00
|
|
|
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',
|
2017-11-03 12:34:47 +01:00
|
|
|
keywords = "pushbullet notifications automation",
|
2017-12-11 20:30:57 +01:00
|
|
|
url = "https://github.com/BlackLight/platypush",
|
2017-11-09 05:04:48 +01:00
|
|
|
packages = find_packages(),
|
2017-11-03 22:54:08 +01:00
|
|
|
entry_points = {
|
|
|
|
'console_scripts': [
|
2017-12-11 20:30:57 +01:00
|
|
|
'platypush=platypush:main',
|
2017-12-11 23:09:45 +01:00
|
|
|
'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 = [
|
2017-11-03 12:34:47 +01:00
|
|
|
"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 12:34:47 +01:00
|
|
|
],
|
2017-11-03 15:06:29 +01:00
|
|
|
install_requires = [
|
2017-11-09 05:04:48 +01:00
|
|
|
'pyyaml',
|
2017-12-12 20:14:02 +01:00
|
|
|
'requires',
|
2017-11-09 05:04:48 +01:00
|
|
|
'websocket-client',
|
2017-11-03 22:54:08 +01:00
|
|
|
],
|
2017-12-12 20:14:02 +01:00
|
|
|
extras_require = {
|
|
|
|
'Support for Apache Kafka backend': ['kafka-python'],
|
|
|
|
'Support for Pushbullet backend': ['requests', 'websocket-client'],
|
|
|
|
'Support for Philips Hue plugin': ['phue'],
|
2017-12-16 02:27:51 +01:00
|
|
|
'Support for MPD/Mopidy music server plugin': ['python-mpd2'],
|
2017-12-12 20:14:02 +01:00
|
|
|
'Support for Belkin WeMo Switch plugin': ['ouimeaux'],
|
|
|
|
},
|
2017-11-03 12:34:47 +01:00
|
|
|
)
|
|
|
|
|