forked from joshmaker/django-admin-locking
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (27 loc) · 1013 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 find_packages, setup
setup(
name='django-admin-locking',
version='1.8.2',
url='https://github.com/theatlantic/django-admin-locking',
download_url='https://github.com/theatlantic/django-admin-locking/tarball/v1.8.2',
license='BSD',
description='Prevents users from overwriting each others changes in Django.',
author='Josh West',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=['six'],
zip_safe=False,
keywords=['Django', 'admin', 'locking'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.2',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
]
)