Skip to content

Commit

Permalink
add version
Browse files Browse the repository at this point in the history
  • Loading branch information
lbluque committed May 14, 2024
1 parent 2b1fe15 commit a364a9d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/fairchem/applications/cattsunami/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
"""
Copyright (c) Meta, Inc. and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
"""

from __future__ import annotations

from importlib.metadata import PackageNotFoundError, version

try:
__version__ = version("fairchem.applications.cattsunami")
except PackageNotFoundError:
# package is not installed
__version__ = ""

0 comments on commit a364a9d

Please sign in to comment.