feat(v0.1.0): project foundation with logging and config

This commit is contained in:
0x_n3m0_
2026-01-05 11:06:46 +02:00
commit 090974259e
65 changed files with 718034 additions and 0 deletions

42
setup.py Normal file
View File

@@ -0,0 +1,42 @@
"""Setup configuration for ICT ML Trading System."""
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="ict-ml-trading",
version="0.1.0",
author="ICT ML Trading Team",
description="ICT ML Trading System for DAX Futures",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/ict-ml-trading",
packages=find_packages(where="src"),
package_dir={"": "src"},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial :: Investment",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.10",
install_requires=[
"numpy>=1.24.0",
"pandas>=2.0.0",
"scikit-learn>=1.3.0",
"pyyaml>=6.0",
"python-dotenv>=1.0.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"sqlalchemy>=2.0.0",
"alembic>=1.11.0",
"python-json-logger>=2.0.7",
"pyarrow>=12.0.0",
"click>=8.1.0",
],
)