-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (72 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
80 lines (72 loc) · 1.96 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
[build-system]
requires = [
"scikit-build-core>=0.10.0",
"pybind11>=2.13.0",
"numpy>=2.0.0",
]
build-backend = "scikit_build_core.build"
[project]
name = "actionet"
version = "0.1.0"
description = "ACTIONet: Single-cell multi-resolution data analysis toolkit"
readme = "README.md"
license = {text = "GPL-3.0"}
authors = [
{name = "Sebastian Pineda", email = "spineda@mit.edu"},
]
requires-python = ">=3.12"
# System (non-pip) build requirements: CMake >= 3.19, C++17 compiler,
# BLAS/LAPACK, HDF5 (C library), and OpenMP (hard requirement).
dependencies = [
"numpy>=2.0.0",
"scipy>=1.11.0",
"anndata>=0.12.10",
"pandas>=2.0.0",
"h5py>=3.9.0",
"igraph>=1.0.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: C++",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"black>=24.0.0",
"ruff>=0.1.0",
]
plotting = [
"lets-plot>=4.5.0",
"matplotlib>=3.9.0",
"plotly>=5.18.0",
"nbformat>=4.2.0",
]
[project.urls]
#Homepage = "https://github.com/KellisLab/actionet-python"
Repository = "https://github.com/KellisLab/actionet-python"
"Bug Tracker" = "https://github.com/KellisLab/actionet-python/issues"
[tool.scikit-build]
minimum-version = "0.10"
build-dir = "build/{wheel_tag}"
build.verbose = true
cmake.build-type = "Release"
wheel.packages = ["src/actionet"]
# [tool.scikit-build.cmake.define]
# ACTIONET_ENABLE_OPTIMIZED = "OFF"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
[tool.black]
line-length = 100
target-version = ['py312', 'py313']
[tool.ruff]
line-length = 100
target-version = "py312"