-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
63 lines (58 loc) · 1.59 KB
/
pyproject.toml
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
[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",
"scikit-optimize==0.9",
"tabulate"
]
requires-python = ">=3.7"
description = "A toolbox for brain network modeling on GPUs "
readme = "README.rst"
authors = [
{name = "Amin Saberi", email="[email protected]"}
]
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"
[tool.setuptools]
include-package-data = true
[tool.cibuildwheel]
before-all = "bash {project}/tools/cibw_before_all.sh {project}"
# add miniconda to path to enable `conda`
# (at the end to avoid overriding cibw's Python)
environment = { PATH="$PATH:/opt/miniconda/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 = ""