-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
17 lines (16 loc) · 909 Bytes
/
setup.py
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='[email protected]',
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/*']},
)