-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.38 KB
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 = [
"scikit-build-core>=0.5",
"numpy>=1.23",
"setuptools>=68",
]
build-backend = "scikit_build_core.build"
[project]
name = "rindle"
version = "1.0.1"
description = "Dataset preparation library with Python bindings for sliding window tensors"
readme = { file = "readme_python.md", content-type = "text/markdown" }
requires-python = ">=3.9"
authors = [{ name = "Eric Gilerson", email="ericgilerson@gmail.com" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.23",
]
keywords = ["time series","windowing","sliding window","dataset builder","feature engineering","ML","forecasting","finance","quant","trading","stocks","normalization","scaling","numpy","pandas"]
[project.urls]
Homepage = "https://github.com/EricGilerson/rindle"
Repository = "https://github.com/EricGilerson/rindle"
Issues = "https://github.com/EricGilerson/rindle/issues"
[project.optional-dependencies]
dev = [
"scikit-build-core>=0.5",
"build",
]
[tool.scikit-build]
wheel.packages = ["python/rindle"]
cmake.verbose = true
[tool.scikit-build.cmake.define]
RINDLE_BUILD_TESTS = "OFF"
RINDLE_BUILD_EXAMPLES = "OFF"
RINDLE_BUILD_PYTHON = "ON"