{ "info": { "author": "Luis C. Cruz", "author_email": "carlitos.kyo@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Buildout", "Framework :: Django", "License :: OSI Approved :: BSD License", "Topic :: Software Development :: Build Tools" ], "description": "Description\n===========\n\n*Please send me feedback and comments to carlitos.kyo@gmail.com*\n\nBased on djangorecipe and code from setuptools used.\n\nThis buildout recipe can be used to create a setup for Django. It will\nautomatically download Django and install it in the buildout's\nsandbox. You can use either a release version of Django or a\nsubversion checkout (by using `trunk` instead of a version number).\n\nThe directory structure is based on: http://django.es/blog/convenciones-proyecto-django/\nand now for django-1.3 use previous versions for older django versions.\n\nlogs directory to handle separete logs from webserver\nurls into project packages used to handle differents urls for each project\n\nYou can see an example of how to use the recipe below::\n\n [buildout]\n parts = satchmo django\n eggs = ipython\n\n [satchmo]\n recipe = gocept.download\n url = http://www.satchmoproject.com/snapshots/satchmo-0.6.tar.gz\n md5sum = 659a4845c1c731be5cfe29bfcc5d14b1\n\n [django]\n recipe = djbuild\n version = trunk\n settings = development\n eggs = ${buildout:eggs}\n extra-paths =\n ${satchmo:location}\n project = dummyshop\n\n\nSupported options\n=================\n\nThe recipe supports the following options.\n\napps \n projects that can be installed using pypi or compressed files. No handle\n dependencies do it by hand using buildout, the decision was taken for these reasons:\n \n * if dependency is a django app this should be declared into this option to install\n it into the extarnal-apps directory or it should be omited if the dependency\n was customized and it is on local-apps directory\n \n * if dependency is not a django app this should be declared into eggs option.\n \n To delete an application should be by hand.\n\nproject\n This option sets the name for your project. The recipe will create a\n basic structure if the project is not already there.\n \nexternal-apps\n This option sets the directory where external reusable apps goes. Which do not\n be installed as an egg or if you don't want install it as an egg.\n \nlocal-apps\n This option sets the directory where local reusable apps goes, usually\n put the company name for this directory, and customized apps.\n\nprojectegg\n Use this instead of the project option when you want to use an egg\n as the project. This disables the generation of the project\n structure.\n\npython\n This option can be used to specify a specific Python version which can be a\n different version from the one used to run the buildout.\n\nversion\n The version argument can accept a few different types of\n arguments. You can specify `trunk`. In this case it will do a\n checkout of the Django trunk. Another option is to specify a release\n number like `0.96.2`. This will download the release\n tarball. Finally you can specify a full svn url (including the\n revision number). An example of this would be\n `http://code.djangoproject.com/svn/django/branches/newforms-admin@7833`.\n\nsettings\n You can set the name of the settings file which is to be used with\n this option. This is useful if you want to have a different\n production setup from your development setup. It defaults to\n `development`.\n\ndownload-cache\n Set this to a folder somewhere on you system to speed up\n installation. The recipe will use this folder as a cache for a\n downloaded version of Django.\n\nextra-paths\n All paths specified here will be used to extend the default Python\n path for the `bin/*` scripts.\n\npth-files\n Adds paths found from a site `.pth` file to the extra-paths.\n Useful for things like Pinax which maintains its own external_libs dir.\n\ncontrol-script\n The name of the script created in the bin folder. This script is the\n equivalent of the `manage.py` Django normally creates. By default it\n uses the name of the section (the part between the `[ ]`).\n\ntest\n If you want a script in the bin folder to run all the tests for a\n specific set of apps this is the option you would use. Set this to\n the list of app labels which you want to be tested.\n\ntestrunner\n This is the name of the testrunner which will be created. It\n defaults to `test`.\n \nfind-links\n used to install apps\n\nAll following options only have effect when the project specified by\nthe project option has not been created already, on the setting file \nespecified.\n\n\nFCGI specific settings\n======================\n\nOptions for FCGI can be set within a settings file (`settings.py`). The options\nis `FCGI_OPTIONS`. It should be set to a dictionary. The part below is an\nexample::\n\n FCGI_OPTIONS = {\n 'method': 'threaded',\n 'daemonize': 'false',\n }\n\n\nAnother example\n===============\n\nThe next example shows you how to use some more of the options::\n\n [buildout]\n parts = django extras\n eggs =\n hashlib\n\n [extras]\n recipe = iw.recipe.subversion\n urls =\n http://django-command-extensions.googlecode.com/svn/trunk/ django-command-extensions\n http://django-mptt.googlecode.com/svn/trunk/ django-mptt\n\n [django]\n recipe = djbuild\n version = trunk\n settings = development\n project = exampleproject\n wsgi = true\n eggs =\n ${buildout:eggs}\n test =\n someapp\n anotherapp\n\nExample using .pth files\n========================\n\nPinax uses a .pth file to add a bunch of libraries to its path; we can\nspecify it's directory to get the libraries it specified added to our\npath::\n\n [buildout]\n parts\t= PIL\n\t svncode\n\t myproject\n\n [PIL]\n recipe\t= zc.recipe.egg:custom\n egg\t\t= PIL\n find-links\t= http://dist.repoze.org/\n\n [svncode]\n recipe\t= iw.recipe.subversion\n urls\t\t= http://svn.pinaxproject.com/pinax/tags/0.5.1rc1\tpinax\n\n [myproject]\n recipe\t= djbuild\n version\t= 1.0.2\n eggs\t\t= PIL\n project\t= myproject\n settings\t= settings\n extra-paths\t= ${buildout:directory}/myproject/apps\n\t\t ${svncode:location}/pinax/apps/external_apps\n\t\t ${svncode:location}/pinax/apps/local_apps\n pth-files\t= ${svncode:location}/pinax/libs/external_libs\n wsgi\t\t= true\n\nAbove, we use stock Pinax for pth-files and extra-paths paths for\napps, and our own project for the path that will be found first in the\nlist. Note that we expect our project to be checked out (e.g., by\nsvn:external) directly under this directory in to 'myproject'.\n\nExample with a different Python version\n=======================================\n\nTo use a different Python version from the one that ran buildout in the\ngenerated script use something like::\n\n [buildout]\n parts\t= myproject\n\n [special-python]\n executable = /some/special/python\n\n [myproject]\n recipe\t= djbuild\n version\t= 1.0.2\n project\t= myproject\n python\t= special-python\n\n\nExample configuration for mod_wsgi\n==================================\n\nIf you want to deploy a project using mod_wsgi you could use this\nexample as a starting point::\n\n \n Order deny,allow\n Allow from all\n \n \n ServerName my.rocking.server\n CustomLog /var/log/apache2/my.rocking.server/access.log combined\n ErrorLog /var/log/apache2/my.rocking.server/error.log\n WSGIScriptAlias / /path/to/buildout/bin/django.wsgi\n ", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/carlitux/djbuild", "keywords": "", "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "djbuild", "package_url": "https://pypi.org/project/djbuild/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/djbuild/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/carlitux/djbuild" }, "release_url": "https://pypi.org/project/djbuild/1.0.4/", "requires_dist": null, "requires_python": null, "summary": "Buildout recipe for Django", "version": "1.0.4" }, "last_serial": 791189, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "7ff3279c8d04a2a003b46f8a05ca9229", "sha256": "871a755b850ec9e9c8d30cde6b91e9f8915419d62d5e0e37d840a16a720522a9" }, "downloads": -1, "filename": "djbuild-0.1.0.tar.gz", "has_sig": false, "md5_digest": "7ff3279c8d04a2a003b46f8a05ca9229", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18685, "upload_time": "2010-09-13T04:41:28", "url": "https://files.pythonhosted.org/packages/ba/74/0cc93599dce00a4ca177301421a2dc3b907d3a5543d5d88b8862bf9f13f3/djbuild-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "f03bea52f30390d7ed212df00023eb18", "sha256": "b2436f751428245c2e166432c58a1259b244a2729bbb8ac08f9258b1d3c05ae1" }, "downloads": -1, "filename": "djbuild-0.2.0.tar.gz", "has_sig": false, "md5_digest": "f03bea52f30390d7ed212df00023eb18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23121, "upload_time": "2010-09-20T05:57:24", "url": "https://files.pythonhosted.org/packages/63/34/8589f2ae7524cfc62035e607bbedabb3b2f0d8a63c47d38e323348ad7f0e/djbuild-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "9da3f9214cbc907d47efc78ede959b87", "sha256": "f7c4c68354cd2f368d40626d1ab4e985fe526f88745dff303d2eeb8d276c230f" }, "downloads": -1, "filename": "djbuild-0.2.1.tar.gz", "has_sig": false, "md5_digest": "9da3f9214cbc907d47efc78ede959b87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22995, "upload_time": "2010-10-09T21:27:29", "url": "https://files.pythonhosted.org/packages/c4/cc/56f84a75feede08eedbffd0b78dc765275d20ff56ae88f5ab77c5190ce5b/djbuild-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "839fd7b89ae00ab7b7e469202df422b0", "sha256": "8a437a709fa0dbfae55449b88d2855fe6c597ecab1cffed8bb61e912aa478863" }, "downloads": -1, "filename": "djbuild-0.2.2.tar.gz", "has_sig": false, "md5_digest": "839fd7b89ae00ab7b7e469202df422b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23022, "upload_time": "2010-10-24T23:27:41", "url": "https://files.pythonhosted.org/packages/6d/7c/c7617448b458f61a32d42b098944aa700af47575715ed07d8770d60f048a/djbuild-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "8a268fa72d533983533c66084e74737e", "sha256": "1dfb125236e382e1ad5fad2e044bcae3f57c19ddf73943e30d6807c94edee532" }, "downloads": -1, "filename": "djbuild-0.2.3.tar.gz", "has_sig": false, "md5_digest": "8a268fa72d533983533c66084e74737e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23048, "upload_time": "2010-10-24T23:41:56", "url": "https://files.pythonhosted.org/packages/c3/3c/0d446f930ddd2fda36a3bca014230b4614ceb6b8eccbaa42826326578c1b/djbuild-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "1f1d39e2f1a89a4ccb57740b65badd33", "sha256": "7ec7370c11a9d82b2d0ec2118e6d952cff4b91041563169cebbf983e8eb874f3" }, "downloads": -1, "filename": "djbuild-0.2.4.tar.gz", "has_sig": false, "md5_digest": "1f1d39e2f1a89a4ccb57740b65badd33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23048, "upload_time": "2010-10-25T07:02:27", "url": "https://files.pythonhosted.org/packages/2f/22/275371183863799c0fb0a16f858a255bf11b1bcd9559e94f7915bc218c31/djbuild-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "cfa75448e7e7783fd5b371ed772afeac", "sha256": "3d24799b5f77f55d726def6f28a101d0a596202022b43ef48ac93ccdc594998a" }, "downloads": -1, "filename": "djbuild-0.2.5.tar.gz", "has_sig": false, "md5_digest": "cfa75448e7e7783fd5b371ed772afeac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23058, "upload_time": "2010-10-25T07:12:51", "url": "https://files.pythonhosted.org/packages/87/ee/de58890418904c0d6c13cd05bb166609f1be3f75a6e7d76bc729bca07713/djbuild-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "569a7a3d5a485b56485bbf11ca4935f3", "sha256": "200002679c41c46466832ec7da742aaebc35cb85f0b783cee992e22312ff892d" }, "downloads": -1, "filename": "djbuild-0.2.6.tar.gz", "has_sig": false, "md5_digest": "569a7a3d5a485b56485bbf11ca4935f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23289, "upload_time": "2010-10-25T08:12:14", "url": "https://files.pythonhosted.org/packages/cc/92/864cdb428ca7de05bfed1f4e9a12f4bae5f188b5d0c6e4237f6fe8566324/djbuild-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "a53b50a41770985be0eaf96a6b34fe0d", "sha256": "382d96e5654f2c3908b3c888886cc1336e0e712023740e70cbfb44b8d63d0db4" }, "downloads": -1, "filename": "djbuild-0.2.7.tar.gz", "has_sig": false, "md5_digest": "a53b50a41770985be0eaf96a6b34fe0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23275, "upload_time": "2010-10-25T08:32:19", "url": "https://files.pythonhosted.org/packages/6c/1e/bc7244b2b0c788494aa35944609de373e2205540abe2758f955aa84c0bc4/djbuild-0.2.7.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "3e23beedd926729dde941a1aff2fa5b3", "sha256": "0cced858044d032e05e96fa11747eb1bbcbeab0360cedcfc3c625d3a3386c0be" }, "downloads": -1, "filename": "djbuild-0.3.7.tar.gz", "has_sig": false, "md5_digest": "3e23beedd926729dde941a1aff2fa5b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26421, "upload_time": "2010-11-06T06:26:23", "url": "https://files.pythonhosted.org/packages/d3/5e/8c04fa0ba1e3afc6546626ea9656bde2719831f5ff121ec9ad6f1837c90a/djbuild-0.3.7.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "ad618eb7a1758522a02fd5fa5a873d12", "sha256": "697e88c0e24e5c16dd4fbaa83c212f214b0459de0638ccd0f498ebe024f36a45" }, "downloads": -1, "filename": "djbuild-0.4.0.tar.gz", "has_sig": false, "md5_digest": "ad618eb7a1758522a02fd5fa5a873d12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23738, "upload_time": "2010-11-07T06:32:35", "url": "https://files.pythonhosted.org/packages/33/0a/9a3fd02fb5916743fb05962490e4b6718e4c29ade2ea5483a67cbc98505d/djbuild-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "1ffcd4700f07e8ede797ae1296c89b92", "sha256": "dbf50996579d7dc37408e72292b46bb053d951977b5deb3e74b5a759ef3056fd" }, "downloads": -1, "filename": "djbuild-0.4.1.tar.gz", "has_sig": false, "md5_digest": "1ffcd4700f07e8ede797ae1296c89b92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23768, "upload_time": "2010-11-08T01:34:21", "url": "https://files.pythonhosted.org/packages/88/ac/8d4af86e804572b10a2481a7e934630efb4237e0753f66b8d60321f78bda/djbuild-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "7fc7ee79954fec007baec1f532962bf9", "sha256": "736cc7b084504054a50c34999d5acfab911829391937fecaa51c3efe5f0fe78f" }, "downloads": -1, "filename": "djbuild-0.4.2.tar.gz", "has_sig": false, "md5_digest": "7fc7ee79954fec007baec1f532962bf9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23769, "upload_time": "2010-11-08T04:25:53", "url": "https://files.pythonhosted.org/packages/e4/54/06e2272e447293d252ccd07a4dc0b67035e37f2708deabec52b13fc77b43/djbuild-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "acd0621cf7d52c6df30369044bbed8e0", "sha256": "f3146907eb2652d3b20dcd6f545880df1990840844de5004143a794f6a60210e" }, "downloads": -1, "filename": "djbuild-0.4.3.tar.gz", "has_sig": false, "md5_digest": "acd0621cf7d52c6df30369044bbed8e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23777, "upload_time": "2010-11-19T19:02:22", "url": "https://files.pythonhosted.org/packages/1e/8d/5b19800b15262bc4f0e25cba28dbb3f2e5db4e85c55b353935d90128c163/djbuild-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "f202e8075990fee860c8aefbcecd2fad", "sha256": "e97d1796b6b3ed30e87903d0da4d49e34532e50331ba2d317a8f6657b94737ae" }, "downloads": -1, "filename": "djbuild-0.4.4.tar.gz", "has_sig": false, "md5_digest": "f202e8075990fee860c8aefbcecd2fad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20920, "upload_time": "2011-02-25T17:58:31", "url": "https://files.pythonhosted.org/packages/d7/7f/57b5c7cfacab68ca64e452f196076b158e051f620f403a02d6a4d524bc83/djbuild-0.4.4.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "dac904e7f57f16dc7cc970b4626e9872", "sha256": "bfcaa367169b22045ad4aa59fdeece82995dbe56d524993160eb154363b4dace" }, "downloads": -1, "filename": "djbuild-1.0.0.tar.gz", "has_sig": false, "md5_digest": "dac904e7f57f16dc7cc970b4626e9872", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22412, "upload_time": "2011-03-28T23:18:26", "url": "https://files.pythonhosted.org/packages/45/84/27fd14f7139af7fc6d8b63224dcfc0642ac27bef421b8d72065b2ffb746f/djbuild-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "624d7af8a6c9a2bc52a36a57eb96dc4f", "sha256": "82a779f73c57c0adbc38a3ba3dd1519cd2dc3d72061bce377dbc68ac8ad1c61a" }, "downloads": -1, "filename": "djbuild-1.0.1.tar.gz", "has_sig": false, "md5_digest": "624d7af8a6c9a2bc52a36a57eb96dc4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22451, "upload_time": "2011-03-29T00:00:13", "url": "https://files.pythonhosted.org/packages/32/3c/89491f3501f17c1cfffb07cf6d349c1d70427691acf91ff89d1f93e24353/djbuild-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "103b301160bae1b3e1aa98b58c72816a", "sha256": "2de920e1e16b84fde4d68c533995de77f7d82a1d41f7604bb527d49d4369f781" }, "downloads": -1, "filename": "djbuild-1.0.2.tar.gz", "has_sig": false, "md5_digest": "103b301160bae1b3e1aa98b58c72816a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22462, "upload_time": "2011-03-29T17:40:28", "url": "https://files.pythonhosted.org/packages/8f/6d/6e56462d14afc0115dc971924fad8bac6cde779347bca5a3550dbe0625ca/djbuild-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "f93cc50da324cca99a010df1dbffd2cc", "sha256": "06bf8359da7108ac7a411587c20d63281a4d664688e9f57f5026fec69299b750" }, "downloads": -1, "filename": "djbuild-1.0.3.tar.gz", "has_sig": false, "md5_digest": "f93cc50da324cca99a010df1dbffd2cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22647, "upload_time": "2011-04-08T09:34:00", "url": "https://files.pythonhosted.org/packages/8d/2e/67993497599d08525e03717e52ad4c3a5a8aaec316921f2538eccdfafd4d/djbuild-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "0dda36788c8be88bd013faa4807bf037", "sha256": "a8d396a7749db1b06dddf8635863c228a36d71fd72c4d4ccabc82982cff381c2" }, "downloads": -1, "filename": "djbuild-1.0.4.tar.gz", "has_sig": false, "md5_digest": "0dda36788c8be88bd013faa4807bf037", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23393, "upload_time": "2011-10-08T00:13:29", "url": "https://files.pythonhosted.org/packages/39/1c/e6d310c2518006be16b6d0b6e155955b931afde593f53cdd6a0edc8cc00d/djbuild-1.0.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0dda36788c8be88bd013faa4807bf037", "sha256": "a8d396a7749db1b06dddf8635863c228a36d71fd72c4d4ccabc82982cff381c2" }, "downloads": -1, "filename": "djbuild-1.0.4.tar.gz", "has_sig": false, "md5_digest": "0dda36788c8be88bd013faa4807bf037", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23393, "upload_time": "2011-10-08T00:13:29", "url": "https://files.pythonhosted.org/packages/39/1c/e6d310c2518006be16b6d0b6e155955b931afde593f53cdd6a0edc8cc00d/djbuild-1.0.4.tar.gz" } ] }