forked from burke-software/django-report-builder
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
executable file
·30 lines (29 loc) · 981 Bytes
/
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
from setuptools import setup, find_packages
setup(
name = "django-report-builder",
version = "1.13",
author = "David Burke",
author_email = "[email protected]",
description = ("Query and Report builder for Django ORM"),
license = "BSD",
keywords = "django report",
url = "https://github.com/burke-software/django-report-builder",
packages=find_packages(),
include_package_data=True,
test_suite='setuptest.setuptest.SetupTestSuite',
tests_require=(
'django-setuptest',
'south',
'argparse',
),
classifiers=[
"Development Status :: 5 - Production/Stable",
'Environment :: Web Environment',
'Framework :: Django',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
"License :: OSI Approved :: BSD License",
],
install_requires=['django', 'openpyxl','python-dateutil']
)