-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from UDST/settings-objects
[0.2.dev6] Introducing settings objects
- Loading branch information
Showing
20 changed files
with
692 additions
and
274 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
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
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
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
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
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,32 +1,87 @@ | ||
Utilities API | ||
============= | ||
Shared utilities | ||
================ | ||
|
||
The utilities are mainly helper functions for templates. | ||
|
||
|
||
Template validation | ||
------------------- | ||
General template tools API | ||
-------------------------- | ||
|
||
.. automodule:: urbansim_templates.utils | ||
:members: validate_template | ||
.. currentmodule:: urbansim_templates.shared | ||
|
||
.. autosummary:: | ||
CoreTemplateSettings | ||
|
||
.. automodule:: urbansim_templates.shared | ||
:members: CoreTemplateSettings | ||
|
||
|
||
Column output tools API | ||
----------------------- | ||
|
||
.. currentmodule:: urbansim_templates.shared | ||
|
||
Table schemas and merging | ||
------------------------- | ||
.. autosummary:: | ||
OutputColumnSettings | ||
register_column | ||
|
||
.. automodule:: urbansim_templates.shared | ||
:members: OutputColumnSettings, register_column | ||
|
||
|
||
Table schemas and merging API | ||
----------------------------- | ||
|
||
.. currentmodule:: urbansim_templates.utils | ||
|
||
.. autosummary:: | ||
validate_table | ||
validate_all_tables | ||
merge_tables | ||
|
||
.. automodule:: urbansim_templates.utils | ||
:members: validate_table, validate_all_tables, merge_tables | ||
|
||
|
||
Other helper functions | ||
---------------------- | ||
Other helper functions API | ||
-------------------------- | ||
|
||
.. currentmodule:: urbansim_templates.utils | ||
|
||
.. autosummary:: | ||
all_cols | ||
cols_in_expression | ||
get_data | ||
get_df | ||
trim_cols | ||
to_list | ||
update_column | ||
update_name | ||
|
||
.. automodule:: urbansim_templates.utils | ||
:members: all_cols, get_data, get_df, trim_cols, update_column, to_list, update_column, update_name | ||
:members: all_cols, cols_in_expression, get_data, get_df, trim_cols, to_list, update_column, update_name | ||
|
||
|
||
Spec validation API | ||
------------------- | ||
|
||
.. currentmodule:: urbansim_templates.utils | ||
|
||
.. autosummary:: | ||
validate_template | ||
|
||
.. automodule:: urbansim_templates.utils | ||
:members: validate_template | ||
|
||
|
||
Version management API | ||
---------------------- | ||
|
||
.. currentmodule:: urbansim_templates.utils | ||
|
||
Version management | ||
------------------ | ||
.. autosummary:: | ||
parse_version | ||
version_greater_or_equal | ||
|
||
.. automodule:: urbansim_templates.utils | ||
:members: parse_version, version_greater_or_equal |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
setup( | ||
name='urbansim_templates', | ||
version='0.2.dev5', | ||
version='0.2.dev6', | ||
description='UrbanSim extension for managing model steps', | ||
author='UrbanSim Inc.', | ||
author_email='[email protected]', | ||
|
Oops, something went wrong.