Coverage for src / tinycta / __init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-04-03 00:31 +0000

1"""TinyCTA: a lightweight Python package for Commodity Trading Advisor (CTA) strategies. 

2 

3Provides signal processing functions for trend-following strategies and linear algebra 

4utilities that handle matrices with missing values. 

5""" 

6# Copyright (c) 2023 Thomas Schmelzer 

7# 

8# Permission is hereby granted, free of charge, to any person obtaining a copy 

9# of this software and associated documentation files (the "Software"), to deal 

10# in the Software without restriction, including without limitation the rights 

11# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 

12# copies of the Software, and to permit persons to whom the Software is 

13# furnished to do so, subject to the following conditions: 

14# 

15# The above copyright notice and this permission notice shall be included in all 

16# copies or substantial portions of the Software. 

17 

18import importlib.metadata 

19 

20__version__ = importlib.metadata.version("tinycta")