Skip to content

Commit

Permalink
Added classifiers for the package
Browse files Browse the repository at this point in the history
  • Loading branch information
Renaud Parent committed Oct 21, 2016
1 parent a8a4253 commit 7258d1e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
*.pyo
*.egg-info
venv/*
dist/*
build/*
22 changes: 19 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,27 @@

setup(
name='django-lock-tokens',
version='0.1',
version='0.1.1',
packages=['lock_tokens'],
include_package_data=True,
description='A Django application that provides a locking mechanism to prevent concurrency editing.',
long_description=README,
author='VisionMark',
author_email='[email protected]',
author='Renaud Parent',
author_email='[email protected]',
url='https://github.com/rparent/django-lock-tokens',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Framework :: Django',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
],
keywords='django concurrent editing lock locking tokens'
)

0 comments on commit 7258d1e

Please sign in to comment.