-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (45 loc) · 861 Bytes
/
pyproject.toml
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
40
41
42
43
44
45
46
47
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "pandas_ml_utils"
dist-name = "pandas-ml-utils"
author = "KIC"
author-email = "[email protected]"
home-page = "https://github.com/KIC/pandas_ml_utils"
description-file = "README.md"
classifiers = ["License :: OSI Approved :: MIT License", "Development Status :: 3 - Alpha"]
requires-python = ">= 3.7"
requires = [
"pandas",
"cachetools",
"sortedcontainers",
"scikit-learn",
"statsmodels",
"hyperopt",
"h5py",
"dill"
]
[tool.flit.metadata.requires-extra]
finance = [
"yfinance"
]
crypto = [
"requests"
]
notebook = [
"vdom",
"mako",
"matplotlib",
"seaborn"
]
reinforcement = [
"gym",
"keras",
"keras-rl"
]
development = [
"sphinx-autodoc-typehints",
"jupyter-sphinx",
"shpinx"
]