aponyx 0.1.0__py3-none-any.whl → 0.1.1__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.

Potentially problematic release.


This version of aponyx might be problematic. Click here for more details.

aponyx/__init__.py CHANGED
@@ -4,7 +4,9 @@ Aponyx - Systematic Macro Credit Strategy Framework.
4
4
  A modular Python framework for developing and backtesting systematic credit strategies.
5
5
  """
6
6
 
7
- __version__ = "0.1.0"
7
+ from importlib.metadata import version
8
+
9
+ __version__ = version("aponyx")
8
10
 
9
11
 
10
12
  def hello() -> str:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: aponyx
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Systematic research framework for tactical credit strategies
5
5
  Keywords: finance,investing
6
6
  Author: Stabile Frisur
@@ -30,7 +30,7 @@ Classifier: Development Status :: 3 - Alpha
30
30
  Classifier: Intended Audience :: Financial and Insurance Industry
31
31
  Classifier: License :: OSI Approved :: MIT License
32
32
  Classifier: Programming Language :: Python :: 3
33
- Classifier: Programming Language :: Python :: 3.13
33
+ Classifier: Programming Language :: Python :: 3.12
34
34
  Classifier: Topic :: Office/Business :: Financial :: Investment
35
35
  Classifier: Typing :: Typed
36
36
  Requires-Dist: pandas>=2.2.0
@@ -47,7 +47,7 @@ Requires-Dist: plotly>=5.24.0 ; extra == 'viz'
47
47
  Requires-Dist: streamlit>=1.39.0 ; extra == 'viz'
48
48
  Requires-Dist: nbformat>=5.10.0 ; extra == 'viz'
49
49
  Requires-Dist: ipykernel>=6.29.0 ; extra == 'viz'
50
- Requires-Python: >=3.13
50
+ Requires-Python: >=3.12, <3.13
51
51
  Project-URL: Changelog, https://github.com/stabilefrisur/aponyx/blob/master/CHANGELOG.md
52
52
  Project-URL: Documentation, https://github.com/stabilefrisur/aponyx/blob/master/README.md
53
53
  Project-URL: Homepage, https://github.com/stabilefrisur/aponyx
@@ -60,7 +60,7 @@ Description-Content-Type: text/markdown
60
60
  # Aponyx
61
61
 
62
62
  [![PyPI version](https://img.shields.io/pypi/v/aponyx.svg)](https://pypi.org/project/aponyx/)
63
- [![Python 3.13+](https://img.shields.io/badge/python-3.13+-blue.svg)](https://www.python.org/downloads/)
63
+ [![Python 3.12](https://img.shields.io/badge/python-3.12-blue.svg)](https://www.python.org/downloads/)
64
64
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
65
65
 
66
66
  A modular Python framework for developing and backtesting systematic credit strategies.
@@ -80,7 +80,7 @@ pip install aponyx[viz]
80
80
 
81
81
  ### Installation from Source
82
82
 
83
- Requires **Python 3.13+** and [`uv`](https://docs.astral.sh/uv/) for environment management.
83
+ Requires **Python 3.12** and [`uv`](https://docs.astral.sh/uv/) for environment management.
84
84
 
85
85
  ```bash
86
86
  # Clone repository
@@ -1,4 +1,4 @@
1
- aponyx/__init__.py,sha256=ozoL8QkOPu6WUtbHg5XsVP--_hVQL7TGMXJ_A2jUd-4,261
1
+ aponyx/__init__.py,sha256=n8VRfBi3qetPtb2fiu5ArE4MuKIRMB6nrQf7uKC9rXU,311
2
2
  aponyx/backtest/__init__.py,sha256=-6BzUuureZEOE7kkJfxMnPNghSXxgKSlh_PVBoht2o4,929
3
3
  aponyx/backtest/adapters.py,sha256=3c_tvMDxww0LvtlBzVodxUmUiiT1Rqd9xnCSrTy-mC8,4508
4
4
  aponyx/backtest/config.py,sha256=ERXXE0Kvw2QFiXDmIAQc39rS8lkaCq2iVhd20_D8AF0,2129
@@ -32,6 +32,6 @@ aponyx/visualization/__init__.py,sha256=06clVGN2HGwuocqzBbMNSFuSNJn1_oEQ1trmKtd4
32
32
  aponyx/visualization/app.py,sha256=Oocv4IY5xrZJxmPSMgK5neV1iLHVr1tK4MMqZrPmJVo,913
33
33
  aponyx/visualization/plots.py,sha256=yHIs3kjKe8Sw_MVdpb1Wq-hkZEqyTKoiNaDNt5DKAck,8587
34
34
  aponyx/visualization/visualizer.py,sha256=ad5mg0UF_ocpOpCbYgtFWZ9NmZiejbOTfaA8v-jXIWc,6518
35
- aponyx-0.1.0.dist-info/WHEEL,sha256=M6du7VZflc4UPsGphmOXHANdgk8zessdJG0DBUuoA-U,78
36
- aponyx-0.1.0.dist-info/METADATA,sha256=zdlr1epFZSY_MhcThskp8HmPgxoA12BoYTbYyQcvHrY,10212
37
- aponyx-0.1.0.dist-info/RECORD,,
35
+ aponyx-0.1.1.dist-info/WHEEL,sha256=M6du7VZflc4UPsGphmOXHANdgk8zessdJG0DBUuoA-U,78
36
+ aponyx-0.1.1.dist-info/METADATA,sha256=lp9X14cLGuBqJdIyEeMZrA8RHifsK3m3QqfS4ngyNRs,10216
37
+ aponyx-0.1.1.dist-info/RECORD,,
File without changes