platypush/setup.py

65 lines
1.6 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",
2017-12-11 20:31:42 +01:00
version = "0.3",
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': [
2017-12-11 20:30:57 +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',
'websocket-client',
2017-11-03 22:54:08 +01:00
],
)