PageRenderTime 24ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/setup.py

https://bitbucket.org/neithere/django-view-shortcuts/
Python | 50 lines | 36 code | 3 blank | 11 comment | 2 complexity | 2a465234ba70c2ea04050916cecc0161 MD5 | raw file
Possible License(s): LGPL-3.0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Copyright (c) 2008--2009 Andy Mikhailenko and contributors
  5. #
  6. # This file is part of Django View Shortcuts.
  7. #
  8. # Django View Shortcuts is free software under terms of the GNU Lesser
  9. # General Public License version 3 (LGPLv3) as published by the Free
  10. # Software Foundation. See the file README for copying conditions.
  11. #
  12. " Django View Shortcuts setup "
  13. from distutils.core import setup
  14. from view_shortcuts import __version__
  15. long_description = '''Some decorators and filters that the author finds
  16. extremely useful when writing non-generic Django views. The package contains
  17. snippets of code that the author had been repeatedly writing with minor
  18. differences for various websites. They were quickly extracted to the single
  19. package.
  20. '''
  21. setup(
  22. name = 'django-view-shortcuts',
  23. version = __version__,
  24. packages = ['view_shortcuts'],
  25. requires = ['python (>= 2.4)', 'django (>= 1.0)'],
  26. description = 'A set of shortcuts for Django views.',
  27. long_description = long_description,
  28. author = 'Andy Mikhailenko',
  29. author_email = 'andy@neithere.net',
  30. url = 'http://bitbucket.org/neithere/django-view-shortcuts/',
  31. download_url = 'http://bitbucket.org/neithere/django-view-shortcuts/src/',
  32. license = 'GNU Lesser General Public License (LGPL), Version 3',
  33. keywords = 'django views shortcut',
  34. classifiers = [
  35. 'Development Status :: 4 - Beta',
  36. 'Environment :: Web Environment',
  37. 'Framework :: Django',
  38. 'Intended Audience :: Developers',
  39. 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
  40. 'Programming Language :: Python',
  41. 'Topic :: Software Development :: Libraries :: Python Modules',
  42. 'Topic :: Software Development :: User Interfaces',
  43. ],
  44. )