-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.26 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
[build-system]
requires = ["setuptools >= 42", "wheel", "pybind11 >= 2.10"]
[project]
name = "mat-neuron"
authors = [
{name = "Dan Meliza", email = "[email protected]"},
]
description = "Python code to integrate and evaluate likelihood for MAT neuron model"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["neuroscience", "simulation"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Natural Language :: English",
]
dependencies = [
"numpy >= 1.21, < 2",
]
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest", "scipy"]
[tool.setuptools.dynamic]
version = {attr = "mat_neuron.__version__"}
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
target-version = ['py310']
[tool.cibuildwheel.linux]
before-all = "yum install eigen3"
test-command = "echo 'installed'"
[tool.cibuildwheel.macos]
before-all = "brew install eigen"
test-command = "echo 'installed'"
[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = "apk add eigen-dev"