forked from darklow/django-suit
-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
28 lines (27 loc) · 1.07 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
from setuptools import setup
setup(
name='django-suit-v2-pm',
version=__import__('suit').VERSION,
description='Modern theme for Django admin interface.',
author='Kaspars Sprogis (darklow) forked by Pulse-Mind',
author_email='[email protected]',
packages=['suit', 'suit.templatetags'],
zip_safe=False,
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'License :: Free for non-commercial use',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Environment :: Web Environment',
'Topic :: Software Development',
'Topic :: Software Development :: User Interfaces',
],
python_requires='>=3.8', # Minimum version requirement of the package
)