-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 1.08 KB
/
setup.py
File metadata and controls
31 lines (30 loc) · 1.08 KB
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
from setuptools import setup
setup(
name='django-adminlte-templates',
version='2.1.2.0', # '2.1.2' is AdminLTE version, '0' is our version
packages=['AdminLTE'],
include_package_data=True,
license='MIT License',
description='AdminLTE Bootstrap Temolates packaged for Django',
long_description=open('README.md', 'r').read(),
url='https://github.com/StephenPCG/django-adminlte-templates',
author='Stephen Zhang',
author_email='stephenpcg@gmail.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities',
],
keywords='django bootstrap theme',
install_requires=[
'django>=1.4',
],
)