-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.07 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (37 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
"""
Setup script for Trading Pipeline CLI
"""
from setuptools import setup, find_packages
setup(
name="trading-pipeline-cli",
version="1.0.0",
description="CLI application for quantile trading model training and backtesting",
author="Your Name",
author_email="your.email@example.com",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"pandas>=1.3.0",
"numpy>=1.21.0",
"matplotlib>=3.4.0",
"scikit-learn>=1.0.0",
"lightgbm>=3.2.0",
"optuna>=2.10.0",
"qlib",
"stable-baselines3",
],
entry_points={
"console_scripts": [
"trading-cli=src.cli.trading_cli:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)