-
Notifications
You must be signed in to change notification settings - Fork 134
/
setup.py
54 lines (44 loc) · 1.57 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
# -*- coding: utf-8 -*-
from os.path import join, dirname
from setuptools import setup, find_packages
version = __import__('model_report').__version__
LONG_DESCRIPTION = """
django-model-report
===================
django reports integrated with highcharts
$ git clone git://github.com/juanpex/django-model-report.git
"""
def long_description():
try:
return open(join(dirname(__file__), 'README.md')).read()
except IOError:
return LONG_DESCRIPTION
setup(name='django-model-report',
version=version,
author='juanpex',
author_email='[email protected]',
description='Django reports integrated with highcharts.',
license='BSD',
keywords='django, model, report, reports, highcharts, chart, charts',
url='https://github.com/juanpex/django-model-report',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
long_description=long_description(),
install_requires=[
'django>=1.3',
'reportlab',
'html5lib',
'BeautifulSoup',
'xhtml2pdf',
'xlwt==0.7.4',
],
classifiers=['Framework :: Django',
'Development Status :: 3 - Alpha',
'Topic :: Internet',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'])