-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 909 Bytes
/
setup.py
File metadata and controls
17 lines (16 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from distutils.core import setup
setup(name='tinyfeedback',
version='0.3.0',
author='Zach Steindler',
author_email='steiza@gmail.com',
url='https://github.com/steiza/tinyfeedback',
description="A simple graphing web-based dashboard",
long_description="""\
tinyfeedback is a ridiculously simple way for you to see trends in whatever you are monitoring. You do an HTTP POST to put data in, and you point and click in the web interface to make some graphs. Yay!""",
keywords='dashboard, web, graph, metrics',
classifiers=['Programming Language :: Python', 'License :: OSI Approved :: MIT License'], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
license='MIT',
packages=['tinyfeedback'],
scripts=['bin/tinyfeedback', 'bin/tinyfeedback-ctl'],
package_data={'tinyfeedback': ['static/*/*', 'templates/*']},
)