-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
31 lines (29 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
25
26
27
28
29
30
31
from setuptools import find_packages, setup
VERSION = __import__('flat_responsive').__version__
setup(
name='django-flat-responsive',
packages=find_packages(),
version=VERSION,
author='elky',
author_email='[email protected]',
description=('An extension for Django admin that makes interface mobile friendly.'),
license='BSD',
url='https://github.com/elky/django-flat-responsive',
download_url='https://github.com/elky/django-flat-responsive/tarball/' + VERSION,
keywords=['django', 'admin', 'responsive', 'mobile', 'interface'],
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)