forked from danfairs/fez.djangoskel
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dan Fairs
committed
Dec 2, 2008
1 parent
861d82f
commit 0d47b13
Showing
4 changed files
with
65 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
Changelog | ||
========= | ||
|
||
0.1.1 | ||
----- | ||
|
||
* Corrected setup.cfg release tagging | ||
|
||
0.1 | ||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,78 @@ | ||
Metadata-Version: 1.0 | ||
Name: fez.djangoskel | ||
Version: 0.1dev | ||
Version: 0.1 | ||
Summary: Paster templates for creating Django applications as eggs | ||
Home-page: http://www.fezconsulting.com | ||
Author: Dan Fairs | ||
Author-email: [email protected] | ||
License: MIT | ||
License: BSD | ||
Description: Introduction | ||
============ | ||
|
||
fez.djangoskel provides paster templates for creating Django | ||
projects and applications as eggs. Two templates are currently | ||
provided. | ||
|
||
|
||
Usage | ||
===== | ||
|
||
Install fez.djangoskel using easy_install. This should also install | ||
paster as a dependency. You should then be able to see two new | ||
templates available: | ||
|
||
$ paster create --list-templates | ||
Available templates: | ||
basic_package: A basic setuptools-enabled package | ||
django_app: Template for a basic Django reusable application | ||
django_project: Template for a Django project | ||
paste_deploy: A web application deployed through paste.deploy | ||
|
||
Create a Django project using the django_project template: | ||
|
||
paster create -t django_project | ||
|
||
Answer the questions that paster asks, and it will create a full | ||
Django project with a template settings file and urls.py. | ||
|
||
Applications are created in a similar way: | ||
|
||
paster create -t django_app | ||
|
||
|
||
Difference from Django's own templates | ||
====================================== | ||
|
||
Django provides its own 'template' app and project generation. | ||
Why use these templates? | ||
|
||
- The primary motivation is that the projects and apps generated | ||
by these templates are eggs. This means that they can be uploaded | ||
to PyPI, and other developers will be able to easy_install them. | ||
|
||
- These templates all provide skeleton documentation in the form | ||
of HISTORY.txt and README.txt files. | ||
|
||
- The application template also provides a lot more plumbing to get | ||
you started writing tests: a tests module, test settings (which can | ||
be invoked using python manage.py test --settings=project.settings) | ||
and test URLConfs and settings that the test client can use. | ||
|
||
|
||
Changelog | ||
========= | ||
|
||
0.1 - Unreleased | ||
---------------- | ||
0.1 | ||
--- | ||
|
||
* Initial release | ||
* Initial work on django_app and django_project templates | ||
|
||
|
||
Platform: UNKNOWN | ||
Classifier: Programming Language :: Python | ||
Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
Classifier: Development Status :: 4 - Beta | ||
Classifier: Environment :: Plugins | ||
Classifier: Framework :: Paste | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: BSD License |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
[egg_info] | ||
tag_build = dev | ||
tag_svn_revision = true | ||
tag_svn_revision = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters