forked from burke-software/django-mass-edit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·26 lines (25 loc) · 900 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
from setuptools import setup, find_packages
setup(
name = "django-mass-edit",
version = "2.7",
author = "David Burke",
author_email = "[email protected]",
description = ("Make bulk changes in the Django admin interface"),
license = "BSD",
keywords = "django admin",
url = "https://github.com/burke-software/django-mass-edit",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
'Environment :: Web Environment',
'Framework :: Django',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
"License :: OSI Approved :: BSD License",
],
install_requires=['django']
)