-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
36 lines (35 loc) · 1.38 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
33
34
35
36
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
setup(
name='django-admin-easy',
version='0.8.0',
url='http://github.com/ebertti/django-admin-easy/',
author='Ezequiel Bertti',
author_email='[email protected]',
install_requires=['django',],
packages=find_packages(exclude=('test_app', 'test_project')),
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 django easy simple',
test_suite="runtests.runtests",
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 :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
zip_safe=False,
)