-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.09 KB
/
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
48
49
50
51
52
53
54
55
56
57
[project]
name = "pybottrader"
version = "0.0.8"
readme = "README.md"
description = "An experimental Python library to implement trading bots"
license = {file = "LICENSE"}
keywords = ["trading", "bots", "finance"]
dependencies = [
"attrs",
"numpy",
"pandas",
"yfinance",
"pybind11",
"twine",
"PyQt5",
"PyQtChart",
]
[project.urls]
Documentation = "https://jailop.github.io/pybottrader/pybottrader.html"
Repository = "https://github.com/jailop/pybottrader"
[tool.setuptools]
package-dir={"" = "."}
[build-system]
requires = [
"setuptools",
"cmake",
"pybind11",
"scikit-build-core",
"build",
"pybind11-stubgen",
]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
# cmake.minimum-version = "3.15"
cmake.source-dir = "pybottrader/indicators"
cmake.build-type = "Release"
wheel.packages = ["pybottrader"]
[project.optional-dependencies]
dev = [
"ipython",
"jupyter",
"jupyterlab",
"mypy",
"pandas-stubs",
"pdoc",
"pylint",
"pytest",
"black",
"sphinx",
"sphinx-rtd-theme",
"sphinx-autodoc-typehints",
]