onesecondtrader 0.1.0__tar.gz → 0.2.0__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.
- {onesecondtrader-0.1.0 → onesecondtrader-0.2.0}/PKG-INFO +1 -1
- {onesecondtrader-0.1.0 → onesecondtrader-0.2.0}/pyproject.toml +22 -2
- onesecondtrader-0.2.0/src/onesecondtrader/log_config.py +15 -0
- {onesecondtrader-0.1.0 → onesecondtrader-0.2.0}/LICENSE +0 -0
- {onesecondtrader-0.1.0 → onesecondtrader-0.2.0}/README.md +0 -0
- {onesecondtrader-0.1.0 → onesecondtrader-0.2.0}/src/onesecondtrader/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: onesecondtrader
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: The Trading Infrastructure Toolkit for Python. Research, simulate, and deploy algorithmic trading strategies — all in one place.
|
|
5
5
|
Author: Nils P. Kujath
|
|
6
6
|
Author-email: 63961429+NilsKujath@users.noreply.github.com
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "onesecondtrader"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.2.0"
|
|
4
4
|
description = "The Trading Infrastructure Toolkit for Python. Research, simulate, and deploy algorithmic trading strategies — all in one place."
|
|
5
5
|
authors = [
|
|
6
6
|
{name = "Nils P. Kujath",email = "63961429+NilsKujath@users.noreply.github.com"}
|
|
@@ -31,9 +31,29 @@ radon = "^6.0.1"
|
|
|
31
31
|
types-pyyaml = "^6.0.12.20250516"
|
|
32
32
|
coverage = "^7.10.1"
|
|
33
33
|
pytest-cov = "^6.2.1"
|
|
34
|
-
python-semantic-release = "^10.2.0"
|
|
35
34
|
mkdocs-autorefs = "^1.4.2"
|
|
35
|
+
mkdocs = "^1.6.1"
|
|
36
|
+
python-semantic-release = "^10.3.0"
|
|
37
|
+
|
|
38
|
+
[tool.semantic_release]
|
|
39
|
+
version_source = "tag"
|
|
40
|
+
upload_to_pypi = true
|
|
41
|
+
commit_version_number = true
|
|
42
|
+
version_variables = [
|
|
43
|
+
"pyproject.toml:version"
|
|
44
|
+
]
|
|
45
|
+
build_command = "poetry build"
|
|
46
|
+
commit_message = "chore(release): {version}"
|
|
47
|
+
tag_format = "v{version}"
|
|
48
|
+
major_on_zero = false
|
|
49
|
+
allow_zero_version = true
|
|
50
|
+
|
|
36
51
|
|
|
37
52
|
[build-system]
|
|
38
53
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
39
54
|
build-backend = "poetry.core.masonry.api"
|
|
55
|
+
|
|
56
|
+
[tool.mypy]
|
|
57
|
+
mypy_path = "src"
|
|
58
|
+
packages = ["onesecondtrader"]
|
|
59
|
+
explicit_package_bases = true
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""Logging configuration for the OneSecondTrader package.
|
|
2
|
+
|
|
3
|
+
This module sets up the default logging configuration and provides
|
|
4
|
+
a logger instance for use throughout the package.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import logging
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
logging.basicConfig(
|
|
11
|
+
level=logging.DEBUG,
|
|
12
|
+
format="%(asctime)s - %(levelname)s - %(threadName)s - %(message)s",
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
logger = logging.getLogger("onesecondtrader")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|