Changes between Version 9 and Version 10 of DjangoSpecifications/AppGuidelines


Ignore:
Timestamp:
Mar 9, 2010, 6:47:17 PM (15 years ago)
Author:
James Bennett
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoSpecifications/AppGuidelines

    v9 v10  
    1 = Guidelines for writing, distributing and using Django applications =
    2 
    3 See
    4  * http://groups.google.com/group/django-developers/browse_thread/thread/bdcad26ab044cb96
    5  * http://www.b-list.org/weblog/2008/sep/07/slides/ and http://media.b-list.org/presentations/2008/djangocon/reusable_apps.pdf
    6 
    7 = Guidelines for reusable application authors =
    8 
    9  * '''namespace''': apps should live in `django.apps`, i.e. if your app is named `frobnicate`, your code should be in `django.apps.frobnicate`
    10   * FIXME alternative: require use of namespace packages, see http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages , review how Zope does it
    11  * FIXME '''Django version''': somehow the Django version used has to be conveyed (`django1.0-comments`?), again Zope app versioning should help
    12  * '''publishing''': apps should be packaged with `setuptools` and published in the [http://pypi.python.org/pypi Python Package Index], under trove category `Framework :: Django`
    13  * '''dependencies''': ordinary `setuptools` dependency handling
    14 
    15 = Package index =
    16 
    17 Additionally to [http://pypi.python.org/pypi/ PyPI] (the Python Package Index), a separate indexing service with ratings, groupings and whatnot would be useful.
    18  * [http://djangoplugables.com Django Pluggables] is a nice start
    19  * see ReusableAppResources for links to other collections of re-usable apps
     1This page and several others were created by a wiki user who was not and is not affiliated with the Django project. Previous contents of this and other similar pages are not and should not be confused with [http://docs.djangoproject.com/ Django's own documentation], which remains the sole source of official documentation for the Django project.
Back to Top