-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 896 Bytes
/
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, find_packages
import modeladmin_utils
setup(
name='django-modeladmin-utils',
author='Pavel Savchenko',
author_email='pavel@modlinltd.com',
url='https://github.com/modlinltd/ModelAdmin-Utils',
version=modeladmin_utils.__version__,
packages=find_packages(),
description='ModelAdmin utils',
install_requires=['django>=1.4'],
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.4',
'Framework :: Django :: 1.5',
'Framework :: Django :: 1.6',
'Framework :: Django :: 1.7',
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
)