aponyx 0.1.0__tar.gz → 0.1.1__tar.gz

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.

Files changed (38) hide show
  1. {aponyx-0.1.0 → aponyx-0.1.1}/PKG-INFO +5 -5
  2. {aponyx-0.1.0 → aponyx-0.1.1}/README.md +2 -2
  3. {aponyx-0.1.0 → aponyx-0.1.1}/pyproject.toml +7 -7
  4. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/__init__.py +3 -1
  5. {aponyx-0.1.0 → aponyx-0.1.1}/LICENSE +0 -0
  6. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/backtest/__init__.py +0 -0
  7. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/backtest/adapters.py +0 -0
  8. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/backtest/config.py +0 -0
  9. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/backtest/engine.py +0 -0
  10. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/backtest/metrics.py +0 -0
  11. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/backtest/protocols.py +0 -0
  12. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/config/__init__.py +0 -0
  13. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/data/__init__.py +0 -0
  14. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/data/cache.py +0 -0
  15. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/data/fetch.py +0 -0
  16. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/data/providers/__init__.py +0 -0
  17. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/data/providers/bloomberg.py +0 -0
  18. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/data/providers/file.py +0 -0
  19. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/data/sample_data.py +0 -0
  20. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/data/schemas.py +0 -0
  21. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/data/sources.py +0 -0
  22. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/data/validation.py +0 -0
  23. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/main.py +0 -0
  24. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/models/__init__.py +0 -0
  25. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/models/catalog.py +0 -0
  26. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/models/config.py +0 -0
  27. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/models/registry.py +0 -0
  28. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/models/signal_catalog.json +0 -0
  29. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/models/signals.py +0 -0
  30. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/persistence/__init__.py +0 -0
  31. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/persistence/json_io.py +0 -0
  32. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/persistence/parquet_io.py +0 -0
  33. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/persistence/registry.py +0 -0
  34. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/py.typed +0 -0
  35. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/visualization/__init__.py +0 -0
  36. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/visualization/app.py +0 -0
  37. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/visualization/plots.py +0 -0
  38. {aponyx-0.1.0 → aponyx-0.1.1}/src/aponyx/visualization/visualizer.py +0 -0
@@ -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,7 +1,7 @@
1
1
  # Aponyx
2
2
 
3
3
  [![PyPI version](https://img.shields.io/pypi/v/aponyx.svg)](https://pypi.org/project/aponyx/)
4
- [![Python 3.13+](https://img.shields.io/badge/python-3.13+-blue.svg)](https://www.python.org/downloads/)
4
+ [![Python 3.12](https://img.shields.io/badge/python-3.12-blue.svg)](https://www.python.org/downloads/)
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
6
 
7
7
  A modular Python framework for developing and backtesting systematic credit strategies.
@@ -21,7 +21,7 @@ pip install aponyx[viz]
21
21
 
22
22
  ### Installation from Source
23
23
 
24
- Requires **Python 3.13+** and [`uv`](https://docs.astral.sh/uv/) for environment management.
24
+ Requires **Python 3.12** and [`uv`](https://docs.astral.sh/uv/) for environment management.
25
25
 
26
26
  ```bash
27
27
  # Clone repository
@@ -1,13 +1,13 @@
1
1
  [project]
2
2
  name = "aponyx"
3
3
  description = "Systematic research framework for tactical credit strategies"
4
- version = "0.1.0"
4
+ version = "0.1.1"
5
5
  readme = "README.md"
6
6
  license = {file = "LICENSE"}
7
7
  authors = [
8
8
  { name = "Stabile Frisur", email = "26568863+stabilefrisur@users.noreply.github.com" }
9
9
  ]
10
- requires-python = ">=3.13"
10
+ requires-python = ">=3.12,<3.13"
11
11
  keywords = [
12
12
  "finance",
13
13
  "investing",
@@ -17,7 +17,7 @@ classifiers = [
17
17
  "Intended Audience :: Financial and Insurance Industry",
18
18
  "License :: OSI Approved :: MIT License",
19
19
  "Programming Language :: Python :: 3",
20
- "Programming Language :: Python :: 3.13",
20
+ "Programming Language :: Python :: 3.12",
21
21
  "Topic :: Office/Business :: Financial :: Investment",
22
22
  "Typing :: Typed",
23
23
  ]
@@ -65,14 +65,14 @@ testpaths = ["tests"]
65
65
 
66
66
  [tool.ruff]
67
67
  line-length = 100
68
- target-version = "py313"
68
+ target-version = "py312"
69
69
 
70
70
  [tool.black]
71
71
  line-length = 100
72
- target-version = ["py313"]
72
+ target-version = ["py312"]
73
73
 
74
74
  [tool.mypy]
75
- python_version = "3.13"
75
+ python_version = "3.12"
76
76
  strict = true
77
77
  warn_return_any = true
78
- warn_unused_configs = true
78
+ warn_unused_configs = true
@@ -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:
File without changes
File without changes
File without changes
File without changes
File without changes