-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (24 loc) · 1.19 KB
/
setup.py
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
from distutils.core import setup
setup(
name="ddql_optimal_execution",
packages=["ddql_optimal_execution", "ddql_optimal_execution/agent", "ddql_optimal_execution/state", "ddql_optimal_execution/experience_replay", "ddql_optimal_execution/environnement", "ddql_optimal_execution/trainer", "ddql_optimal_execution/preprocessing"],
version="0.1.1",
license="MIT",
description="Double Deep Q Learning for Optimal Trading Execution",
author="Lucas Saban",
url="https://github.com/g0bel1n/DDQL-optimal-execution",
download_url="https://github.com/g0bel1n/DDQL-optimal-execution/archive/refs/tags/v0.1-beta.tar.gz",
keywords=["DDQL", "OPTIMAL EXECUTION", "TRADING"],
install_requires=["numpy", "pandas", "torch", "tqdm"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)