forked from TradeMaster-NTU/TradeMaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
32 lines (29 loc) · 809 Bytes
/
setup.cfg
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
[metadata]
name = trademaster
description = TradeMaster: A Comprehensive Toolkit for Algorithmic Trading
license = MIT
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
[options]
packages = find:
include_package_data = True
install_requires =
# The requirements will be read from the requirements.txt file
# Add the contents of the requirements.txt file here, one per line
# Example:
# numpy
# pandas
# scikit-learn
[options.extras_require]
test =
# Add your test dependencies here, one per line
# Example:
# pytest
# pytest-cov
[options.packages.find]
exclude =
tests