forked from debugloop/saltobserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.23 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# -*- coding: utf-8 -*-
import codecs
from os import path
from setuptools import setup
with open('README.rst', 'rt') as f:
long_description = f.read()
setup(
name='saltobserver',
version='0.9.4',
description='A simple webapp for presenting data as offered by SaltStack\'s Redis Returner',
long_description=long_description,
url='https://github.com/analogbyte/saltobserver',
author='Daniel Nägele',
author_email='saltobserver@danieln.de',
license='MIT',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Framework :: Flask',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
keywords='saltstack redis returner salt states',
packages=['saltobserver'],
package_data={
'saltobserver': [
'templates/*.html',
'static/style.css',
]
},
install_requires=['flask', 'flask_sockets', 'gunicorn', 'redis', 'gevent', 'gevent-websocket'],
scripts=['scripts/run_saltobserver'],
)