Skip to content

Commit

Permalink
chore(build): add __version__ in __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
LilithWittmann committed Jan 29, 2024
1 parent 5071b0c commit 174647e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions causy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
"""causy
Causal discovery made easy. Causy allows you to use and implement causal discovery algorithms with easy to use, extend and maintain pipelines. It is built based on pytorch which allows you to run the algorithms on CPUs as well as GPUs seamlessly.
Learn more at https://causy.dev.
"""

import importlib.metadata

__version__ = importlib.metadata.version("causy")

0 comments on commit 174647e

Please sign in to comment.