-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
24 lines (23 loc) · 1.15 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
from distutils.core import setup
setup(
name='django-phantom-theme',
version='1.1',
packages=['phantom', 'phantom.templatetags'],
url='http://www.eggforsale.com/catalogue/django-phantom-theme_15/',
license='Creative Commons Attribution-NonCommercial 3.0',
author='EggForSale Platform',
author_email='support@eggforsale.com',
description='Django Phantom Theme is an admin theme for Django Framework. It allows for registering custom database options and provides a clean and modern web interface. The application is designed to be responsive and adopt to mobile and tablet devices. To achieve this we have used the twitter bootstrap 3.x framework grid.',
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',
'Environment :: Web Environment',
'Topic :: Software Development',
'Topic :: Software Development :: User Interfaces',
]
)