Skip to content

Commit

Permalink
Correct release taggin
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Fairs committed Dec 2, 2008
1 parent 861d82f commit 0d47b13
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 8 deletions.
5 changes: 5 additions & 0 deletions docs/HISTORY.txt
@@ -1,6 +1,11 @@
Changelog
=========

0.1.1
-----

* Corrected setup.cfg release tagging

0.1
---

Expand Down
63 changes: 58 additions & 5 deletions fez.djangoskel.egg-info/PKG-INFO
@@ -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: dan@fezconsulting.com
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
3 changes: 1 addition & 2 deletions setup.cfg
@@ -1,3 +1,2 @@
[egg_info]
tag_build = dev
tag_svn_revision = true
tag_svn_revision = false
2 changes: 1 addition & 1 deletion setup.py
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import os

version = '0.1'
version = '0.1.1'

setup(name='fez.djangoskel',
version=version,
Expand Down

0 comments on commit 0d47b13

Please sign in to comment.