forked from enjoysport2022/ReinforcementLearning_for_stock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 714 Bytes
/
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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
setup(name="ReinforcementLearning_for_stock",
version="0.0.1",
description="rl for stock",
url='https://github.com/poteman/ReinforcementLearning_for_stock',
install_requires=[
'lightgbm',
'xgboost',
'torch',
'numpy',
'pandas',
'sklearn',
'tqdm',
'4paradigm/AutoX'
],
python_requires='>=3.6',
packages=find_packages(exclude=['data', 'img', 'log']),
include_package_data=True,
zip_safe=False
)
# python setup.py sdist build
# twine upload dist/*