-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
73 lines (66 loc) · 1.88 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"numpy<2,>=1.20",
"versioneer[toml]"
]
[project]
name = "cubnm"
license = {file = "LICENSE"}
dependencies = [
"numpy<2,>=1.20",
"scipy",
"pandas",
"pymoo==0.6",
"tabulate",
"matplotlib",
"seaborn"
]
requires-python = ">=3.7"
description = "A toolbox for brain network modeling on GPUs "
readme = "README.rst"
authors = [
{name = "Amin Saberi", email="amnsbr@gmail.com"}
]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: C',
'Programming Language :: C++',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: Unix',
'Environment :: GPU :: NVIDIA CUDA',
'Topic :: Scientific/Engineering',
]
dynamic = ["version"]
[project.scripts]
cubnm = "cubnm.cli:main"
[project.optional-dependencies]
cu11 = ["cupy-cuda11x", "numba-cuda[cu11]", "nvidia-cublas-cu11"]
cu12 = ["cupy-cuda12x", "numba-cuda[cu12]", "nvidia-cublas-cu12"]
cu13 = ["cupy-cuda13x", "numba-cuda[cu13]", "nvidia-cublas"]
[tool.setuptools]
include-package-data = true
[tool.cibuildwheel]
before-all = "bash {project}/tools/cibw_before_all.sh {project}"
# add miniforge to path to enable `conda`
# (at the end to avoid overriding cibw's Python)
environment = { PATH="$PATH:/opt/miniforge/bin" }
manylinux-x86_64-image = "sameli/manylinux2014_x86_64_cuda_11.8"
build-verbosity = 3
skip = ["pp*", "*-manylinux_i686", "*musllinux*"]
build = ["*-manylinux_x86_64"]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/cubnm/_version.py"
versionfile_build = "cubnm/_version.py"
tag_prefix = "v"
parentdir_prefix = ""
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "WARNING"