forked from adly/blingalytics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (47 loc) · 1.78 KB
/
setup.py
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from distutils.core import setup
long_description = '''
Blingalytics
============
Blingalytics is an open-source Python project for building a flexible,
powerful business reporting system.
* Define new reports quickly by writing simple Python
* Pluggable data source and caching structure - use the built-in modules or
write one for your own particular needs
* Output your report data to powerful HTML/JavaScript tables, with paging,
sorting and more
For the full documentation, please visit it over on `Read the Docs`_. Or if
you're feeling particularly do-it-yourself today, you can always build the
docs yourself with Sphinx_.
Thanks to Adly_ for fostering the initial development of Blingalytics as an
open-source project. Blingalytics is released under the `MIT License`_.
.. _Read the Docs: http://blingalytics.readthedocs.org/
.. _Sphinx: http://sphinx.pocoo.org/
.. _Adly: http://adly.com/
.. _MIT License: http://www.opensource.org/licenses/mit-license
'''
setup(
name='Blingalytics',
version='0.2.6',
author='Jeff Schenck, Adly Inc.',
author_email='[email protected]',
url='http://github.com/jeffschenck/blingalytics',
description='Blingalytics is a tool for building reports from your data.',
long_description=long_description,
license='MIT License',
packages=[
'blingalytics',
'blingalytics.caches',
'blingalytics.sources',
'blingalytics.utils',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Topic :: Office/Business',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Scientific/Engineering',
],
)