Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5a574f1
Change version and update history.
Sep 27, 2012
04645b4
Add DependentVar type that obtains its default value from a previous …
Sep 29, 2012
69d208b
Add Validator class and RegexValidator subclass.
Sep 29, 2012
3f49965
Refactor validation flow so that extension is clearer.
Sep 29, 2012
d7ef380
Fix bug: return validated value.
Oct 1, 2012
5ad4c50
Add support for jinja-based formatting:
Oct 1, 2012
488a6e1
Preserve final newline in Jinja templates
Oct 10, 2012
502b839
test_core: check preservation of trailing newlines
Oct 10, 2012
0b07cb1
Support BUILD_SUFFIX to add ".dev<N>" extension to version for
Oct 12, 2012
1a9cdcf
Merge branch 'master' of github.com:locationlabs/skeleton
Oct 12, 2012
762e8f7
Remove duplicate suffix.
Oct 12, 2012
596f2b9
Change submodule to read only https form.
Oct 12, 2012
e64fc5d
Use __build__ instead of os.environ
Dec 22, 2012
d39c7a0
Testing push for RC
Dec 22, 2012
86afc4a
Rev version of master.
Dec 22, 2012
bacdd1e
Merge branch 'release-0.6-ll'
Dec 22, 2012
8f1b306
PEP8 compliance
Mar 8, 2013
5eed3e6
Add choice validator.
Mar 22, 2013
1c257ef
Bump version.
Mar 25, 2013
07b4232
Merge branch 'release/0.6.1'
Mar 25, 2013
6f3f15f
Add the ability to include other files
hfinucane Jan 27, 2014
19e6e35
Allow including rendered files
hfinucane Jan 27, 2014
07b1ac8
Merge branch 'template-inheritance' of git://github.com/hfinucane/ske…
Jan 27, 2014
19b1945
Make destination directory available to templates
hfinucane Feb 1, 2014
db46dbd
Merge pull request #3 from hfinucane/environment_plumbing
jessemyers Feb 1, 2014
c328815
Allow loading from non-cwd destination directory
hfinucane Feb 3, 2014
e986722
Merge pull request #4 from hfinucane/template-inheritance
jessemyers Feb 3, 2014
c533b89
Set __dst_dir__ in write() instead of cmd()
hfinucane Feb 3, 2014
8aaecaf
Merge pull request #5 from hfinucane/dst_dir_entry
jessemyers Feb 3, 2014
174dcd8
Restore version to 0.6.2
Feb 3, 2014
b0529b1
Merge branch 'release/0.6.2'
Feb 3, 2014
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "docs/_build/html"]
path = docs/_build/html
url = git@github.com:dinoboff/skeleton.git
url = https://github.com/dinoboff/skeleton.git
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
History
=======

0.6-ll (Sep 27, 2012)
--------------------

Fork for Location Labs.


0.6 (Mai 12, 2010)
--------------------

Expand Down
19 changes: 11 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
distribute_setup.use_setuptools()

import sys

from setuptools import setup


Expand All @@ -22,7 +21,9 @@ def read_file(name):


PROJECT = 'skeleton'
VERSION = '0.6-ypr'
VERSION = '0.6.2-ll'
# Jenkins will replace __build__ with a unique value.
__build__ = ''
URL = 'http://dinoboff.github.com/skeleton'
AUTHOR = 'Damien Lebrun'
AUTHOR_EMAIL = 'dinoboff@gmail.com'
Expand All @@ -36,7 +37,7 @@ def read_file(name):

setup(
name=PROJECT,
version=VERSION,
version=VERSION + __build__,
description=DESC,
long_description=LONG_DESC,
author=AUTHOR,
Expand All @@ -47,18 +48,20 @@ def read_file(name):
test_suite='skeleton.tests',
include_package_data=True,
zip_safe=False,
install_requires=[],
install_requires=[
'jinja2'
],
extras_require={
'virtualenv-templates': [
'virtualenvwrapper>=2.1.1',
'virtualenvwrapper.project>=1.0'
],
],
},
entry_points={
'virtualenvwrapper.project.template': [
'package = skeleton.examples.basicpackage:virtualenv_warpper_hook',
],
},
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
Expand All @@ -68,6 +71,6 @@ def read_file(name):
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
],
],
**EXTRAS
)
3 changes: 2 additions & 1 deletion skeleton/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"""

from skeleton.core import (
Skeleton, Var, Bool, FileNameKeyError, TemplateKeyError
Skeleton, Var, Bool, DependentVar, FileNameKeyError, TemplateKeyError,
Validator, RegexValidator
)
from skeleton.utils import insert_into_file
Loading