forked from nikolajbaer/django-reportengine
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
executable file
·50 lines (45 loc) · 1.84 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
#!/usr/bin/env python
from setuptools import setup, find_packages
VERSION = '0.3.1'
LONG_DESC = """\
Django Report Engine provides a reporting framework for Django 1.3+. Its goal
is to be lightweight, provide multiple output formats, easily integrate into
existing applications, and be open ended to both direct SQL reports, ORM based
reports, or any other type of report imaginable. It is also attempting to be
reasonably batteries-included with some basic Date based filtering assumptions,
and simple namespacing of reports.
Reports are assumed to be tabular, with additional key/value "aggregates". A
special form can be used to provide filtering/querying controls. There are
premade filtering controls/framework to assist. Existing shortcut queryset and
SQL based forms are integrated and can be quickly extended for generic reports.
CSV, XML and HTML exports are included.
"""
setup(
name='django-reportengine',
version=VERSION,
description="A Django app for building and integrating reports into your Django project.",
long_description=LONG_DESC,
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'Natural Language :: English',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='django reporting reports',
maintainer = 'Nikolaj Baer',
maintainer_email = 'nikolaj@cukerinteractive.com',
url='http://github.com/cuker/django-reportengine',
license='MIT License',
packages=find_packages(exclude=['example', 'example.example_reports', 'tests']),
tests_require=[
'django>=1.3,<1.6',
'factory_boy',
'django-celery',
],
zip_safe=False,
install_requires=[ ],
test_suite='runtests.runtests',
include_package_data = True,
)