-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
33 lines (29 loc) · 1.05 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
from distutils.core import setup
from setuptools import find_packages
VERSION = __import__("admin_report").__version__
CLASSIFIERS = [
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
]
install_requires = []
setup(
name="django-admin-report",
packages=find_packages(exclude=["tests"]),
description="Django application and library for create reports using all power of the ORM Django",
version=VERSION,
author="Mateus Vanzo de Padua",
author_email="mateuspaduaweb@gmail.com",
license='MIT License',
platforms=['OS Independent'],
url="https://github.com/mateuspadua/django-admin-report",
keywords=['report', 'django', 'admin', 'group_by', 'annotate', 'agregate', 'ORM'],
include_package_data=True,
install_requires=install_requires,
classifiers=CLASSIFIERS,
)