forked from platypush/platypush
6dcec9f9b4
- Only Python 3.6 on Travis
72 lines
2 KiB
Python
Executable file
72 lines
2 KiB
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import errno
|
|
import os
|
|
from setuptools import setup, find_packages
|
|
|
|
def read(fname):
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
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():
|
|
path = '/etc/platypush'
|
|
try:
|
|
os.makedirs(path)
|
|
except OSError as e:
|
|
if isinstance(e, PermissionError):
|
|
print('WARNING: Could not create /etc/platypush')
|
|
elif e.errno == errno.EEXIST and os.path.isdir(path):
|
|
pass
|
|
else:
|
|
raise
|
|
|
|
plugins = pkg_files('platypush/plugins')
|
|
backend = pkg_files('platypush/backend')
|
|
create_etc_dir()
|
|
|
|
setup(
|
|
name = "platypush",
|
|
version = "0.5",
|
|
author = "Fabio Manganiello",
|
|
author_email = "info@fabiomanganiello.com",
|
|
description = ("Platypush service"),
|
|
license = "MIT",
|
|
python_requires = '>= 3',
|
|
keywords = "pushbullet notifications automation",
|
|
url = "https://github.com/BlackLight/platypush",
|
|
packages = find_packages(),
|
|
entry_points = {
|
|
'console_scripts': [
|
|
'platypush=platypush:main',
|
|
'pusher=platypush.pusher:main',
|
|
],
|
|
},
|
|
data_files = [
|
|
('/etc/platypush', ['platypush/config.example.yaml'])
|
|
],
|
|
long_description = read('README.md'),
|
|
classifiers = [
|
|
"Topic :: Utilities",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Development Status :: 3 - Alpha",
|
|
],
|
|
install_requires = [
|
|
'pyyaml',
|
|
'requires',
|
|
'websocket-client',
|
|
],
|
|
extras_require = {
|
|
'Support for Apache Kafka backend': ['kafka-python'],
|
|
'Support for Pushbullet backend': ['requests', 'websocket-client'],
|
|
'Support for Philips Hue plugin': ['phue'],
|
|
'Support for MPD/Mopidy music server plugin': ['python-mpd2'],
|
|
'Support for Belkin WeMo Switch plugin': ['ouimeaux'],
|
|
},
|
|
)
|
|
|