forked from douwevandermeij/admin-totals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.19 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
from setuptools import setup, find_packages
REQUIREMENTS = (
'Django',
)
TEST_REQUIREMENTS = (
'markdown==2.6.4',
'coverage',
'flake8',
'isort',
'mock',
'pytz',
'unittest-xml-reporting',
)
setup(
name="admin-totals",
version='1.0.10',
author="Douwe van der Meij",
author_email="[email protected]",
description="""Django Admin Totals, add totals to your columns in Django admin.
""",
long_description=open('README.md', 'rt').read(),
long_description_content_type="text/markdown",
url="https://github.com/douwevandermeij/admin-totals",
packages=find_packages(),
include_package_data=True,
install_requires=REQUIREMENTS,
tests_require=TEST_REQUIREMENTS,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)