construct-labs-crm-env 0.1.2__py3-none-any.whl → 0.1.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,9 +4,11 @@ This package provides a Python client for interacting with the Construct Labs
4
4
  CRM Agent Environment - a reinforcement learning environment for training
5
5
  agents to interact with CRM systems.
6
6
 
7
- For more information, see https://docs.construct-labs.com/crm-agent
7
+ For licensing and support, contact hello@construct-labs.com
8
8
  """
9
9
 
10
+ from importlib.metadata import PackageNotFoundError, version
11
+
10
12
  from .client import CrmAgentEnv
11
13
  from .models import (
12
14
  CRMActionType,
@@ -16,7 +18,10 @@ from .models import (
16
18
  )
17
19
  from .protocol import ParsedAction
18
20
 
19
- __version__ = "0.1.0"
21
+ try:
22
+ __version__ = version("construct-labs-crm-env")
23
+ except PackageNotFoundError:
24
+ __version__ = "0.0.0+dev"
20
25
 
21
26
  __all__ = [
22
27
  # Main client