-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
33 lines (31 loc) · 1.16 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
32
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
setup(
name='django-admin-easy',
version='0.2.2',
url='http://github.com/ebertti/django-admin-easy/',
author='Ezequiel Bertti',
author_email='ebertti@gmail.com',
install_requires=['django'],
packages=['easy'],
include_package_data=True,
license='MIT License',
platforms=['OS Independent'],
description="Collection of admin fields and decorators to help to create computed or custom fields more friendly and easy way",
long_description=(open('README.rst').read()),
keywords='admin field fields django easy simple',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Natural Language :: Portuguese (Brazilian)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
zip_safe=False,
)