File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 88
99# Declaring module version as per https://www.python.org/dev/peps/pep-0396/#specification
1010# Update this accordingly for each release.
11- __version__ = '0 .0.1 '
11+ __version__ = '1 .0.0 '
1212
1313_apps = {}
1414_apps_lock = threading .RLock ()
1919def initialize_app (credential = None , options = None , name = _DEFAULT_APP_NAME ):
2020 """Initializes and returns a new App instance.
2121
22- Creates a new App intance using the specified options
22+ Creates a new App instance using the specified options
2323 and the app name. If an instance already exists by the same
2424 app name a ValueError is raised. Use this function whenever
2525 a new App instance is required. Do not directly invoke the
Original file line number Diff line number Diff line change 3636 install_requires = install_requires ,
3737 packages = find_packages (exclude = ['tests' ]),
3838 classifiers = [
39- 'Development Status :: 3 - Alpha ' ,
39+ 'Development Status :: 5 - Production/Stable ' ,
4040 'Intended Audience :: Developers' ,
4141 'Topic :: Software Development :: Build Tools' ,
4242 'Programming Language :: Python :: 2' ,
You can’t perform that action at this time.
0 commit comments