-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.91 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (60 loc) · 1.91 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "canns-lib"
description = "High-performance computational acceleration library for CANNS, providing optimized implementations for topological data analysis and neural network computations"
authors = [
{ name="Sichao He", email="sichaohe@outlook.com" },
]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11,<4.0"
dynamic = ["version"]
dependencies = [
"numpy>=1.21.0",
"scipy>=1.7.0",
"scikit-learn>=1.0.0",
"psutil>=7.0.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
[project.urls]
Repository = "https://github.com/routhleck/canns-lib"
Homepage = "https://github.com/routhleck/canns-lib"
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-benchmark>=3.4.0",
"matplotlib>=3.3.0",
"persim>=0.3.0",
"ripser>=0.6.12",
"ratinabox>=1.6.0",
]
[tool.maturin]
python-source = "python"
# Extract version from Cargo.toml
version-from-cargo = true
# Enable parallel features by default for releases. The `extension-module`
# feature is also required so PyO3 produces a cdylib (not a libpython-linked
# binary) when maturin invokes cargo. See Cargo.toml for the rationale.
features = ["parallel", "extension-module"]
[dependency-groups]
dev = [
"maturin>=1.9.3",
"pytest>=8.4.1",
]