forked from debrouwere/django-locking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (27 loc) · 1.28 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
import os
from setuptools import setup, find_packages
version = '0.3.0'
README = os.path.join(os.path.dirname(__file__), 'README')
long_description = open(README).read()
setup(name='django-locking',
version=version,
description=("Prevents users from doing concurrent editing in Django. Works out of the box in the admin interface, or you can integrate it with your own apps using a public API."),
long_description=long_description,
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'],
keywords='locking mutex',
author='Stijn Debrouwere',
author_email='[email protected]',
url='http://stdbrouw.github.com/django-locking/',
download_url='http://www.github.com/stdbrouw/django-locking/tarball/master',
license='BSD',
packages=find_packages(),
install_requires=['django-staticfiles','simplejson'],
)