Constants

Setup strings

These strings are used for version control and setup.py for distribution.

__numversion__

ide_gen.__numversion__ = (0, 1, 1)

Current version of the library as a numeric tuple.

__version__

ide_gen.__version__ = ".".join([str(num) for num in __numversion__])

Current version of the library.

__author__

ide_gen.__author__ = "Rebecca Ann Heineman"

Author’s name.

__title__

ide_gen.__title__ = "ide_gen"

Name of the module.

__summary__

ide_gen.__summary__ = "IDE project generator."

Summary of the module’s use.

__uri__

ide_gen.__uri__ = "http://ide-gen.readthedocs.io"

Home page.

__email__

ide_gen.__email__ = "becky@burgerbecky.com"

Email address for bug reports.

__license__

ide_gen.__license__ = "MIT License"

Type of license used for distribution.

Configurations

xcode_json.TABS

ide_gen.xcode_json.TABS = "\t"

Default tab format for XCode.

xcode_json.OBJECT_ORDER

ide_gen.xcode_json.OBJECT_ORDER = ("PBXAggregateTarget","PBXBuildFile","PBXBuildRule","PBXContainerItemProxy","PBXCopyFilesBuildPhase","PBXFileReference","PBXFrameworksBuildPhase","PBXGroup","PBXNativeTarget","PBXProject","PBXReferenceProxy","PBXResourcesBuildPhase","PBXShellScriptBuildPhase","PBXSourcesBuildPhase","PBXTargetDependency","XCBuildConfiguration","XCConfigurationList")

Names of Xcode objects in the order they are output.