Files
dax-ml/setup.py

43 lines
1.3 KiB
Python

"""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",
],
)