forked from the-aerospace-corporation/brainblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (78 loc) · 2.48 KB
/
pyproject.toml
File metadata and controls
84 lines (78 loc) · 2.48 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["scikit-build-core>=0.10", "pybind11>=2.12"]
build-backend = "scikit_build_core.build"
[project]
name = "brainblocks"
version = "0.7.1"
description = "BrainBlocks Toolkit"
readme = "README.md"
license = {text = "AGPL-3.0-only"}
authors = [
{name = "Jacob Everist", email = "jacob.everist@gmail.com"},
{name = "David Di Giorgio", email = "ddigiorg@gmail.com"}
]
keywords = [
"brainblocks",
"htm",
"classification",
"anomaly",
"abnormality",
"time-series",
"neuroscience",
"cognitive",
"distributed",
"representation"
]
classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: C",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 3 - Alpha",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: GNU Affero General Public License v3",
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.18.5",
"scipy>=1.5.4",
"scikit-learn>=0.22.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"build>=1.0",
]
viz = [
"matplotlib>=3.2.2",
"pandas>=1.1.5",
]
[project.urls]
Homepage = "https://github.com/the-aerospace-corporation/brainblocks"
Repository = "https://github.com/the-aerospace-corporation/brainblocks"
Documentation = "https://github.com/the-aerospace-corporation/brainblocks/tree/master/docs"
Issues = "https://github.com/the-aerospace-corporation/brainblocks/issues"
# ============================================================================
# scikit-build-core configuration
# ============================================================================
[tool.scikit-build]
cmake.version = ">=3.18"
cmake.build-type = "Release"
wheel.packages = ["src/brainblocks"]
# Platform-specific build settings
[tool.scikit-build.cmake.define]
PYTHON_EXTENSION = "ON"
# ============================================================================
# Testing configuration
# ============================================================================
[tool.pytest.ini_options]
testpaths = ["tests/python"]
python_files = ["test_*.py"]
addopts = ["-v", "--tb=short"]