-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
130 lines (112 loc) · 3.81 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
[build-system]
build-backend = 'mesonpy'
requires = [
'meson>=1.4',
'ninja',
'meson-python>=0.14',
'pybind11[global]']
[project]
name = 'pymoose'
# dynamic = ['version']
version = '4.1.0'
description = 'Python scripting interface of MOOSE Simulator (https://moose.ncbs.res.in)'
readme = 'README.md'
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPL 3',
'Programming Language :: C',
'Programming Language :: C++',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development :: Libraries',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
]
requires-python = '>= 3.8'
license = { file = 'LICENSE' }
authors = [
{name = 'Upinder S. Bhalla', email = 'bhalla@ncbs.res.in'},
{name = 'Niraj Dudani', email = ''},
{name = 'Subhasis Ray', email = 'ray.subhasis@gmail.com'},
{name = 'Aditya Gilra', email = ''},
{name = 'Aviral Goel', email = ''},
{name = 'Dilawar Singh', email = ''},
{name = 'Dharma Teja', email = ''},
{name = 'Malav Shah', email = ''},
{name = 'Dhruva Gowda', email = ''},
{name = 'G.V. Harsharani', email = 'hrani@ncbs.res.in'},
]
maintainers = [
{name = 'Upinder S. Bhalla', email = 'bhalla@ncbs.res.in'},
{name = 'Subhasis Ray', email = 'ray.subhasis@gmail.com'},
{name = 'G.V. Harsharani', email = 'hrani@ncbs.res.in'},
]
dependencies = ['numpy>=1.23', 'matplotlib', 'vpython', 'python-libsbml', 'pyneuroml']
[project.urls]
homepage = 'https://moose.ncbs.res.in'
documentation = 'https://moose.ncbs.res.in/readthedocs/index.html'
repository = 'https://github.com/BhallaLab/moose-core'
[project.optional-dependencies]
test = [
'coverage',
'pytest',
'pytest-cov'
]
[tool.meson-python.args]
setup = ['--default-library=static', '-Ddebug=false', '-Doptimization=3', '--vsenv']
compile = ['-j4']
dist = ['--include-subprojects']
[tool.cibuildwheel]
build = '*-macosx_* *-manylinux_x86_64 *-win_amd64 *-win_arm64'
skip = "*-win32"
test-skip = ""
free-threaded-support = false
archs = ["auto"]
build-frontend = "default"
config-settings = {}
dependency-versions = 'pinned'
environment = {}
environment-pass = []
build-verbosity = 0
before-all = 'uname -a'
before-build = ''
repair-wheel-command = ''
test-command = ''
before-test = ''
test-requires = []
test-extras = []
container-engine = 'docker'
[tool.cibuildwheel.linux]
repair-wheel-command = 'auditwheel repair -w {dest_dir} {wheel}'
manylinux-x86_64-image = 'manylinux2014'
# manylinux-i686-image = 'manylinux2014'
manylinux-aarch64-image = 'manylinux2014'
manylinux-ppc64le-image = 'manylinux2014'
manylinux-s390x-image = 'manylinux2014'
manylinux-pypy_x86_64-image = 'manylinux2014'
# manylinux-pypy_i686-image = 'manylinux2014'
manylinux-pypy_aarch64-image = 'manylinux2014'
# musllinux-x86_64-image = 'musllinux_1_2'
# musllinux-i686-image = 'musllinux_1_2'
# musllinux-aarch64-image = 'musllinux_1_2'
# musllinux-ppc64le-image = 'musllinux_1_2'
# musllinux-s390x-image = 'musllinux_1_2'
# musllinux-armv7l-image = 'musllinux_1_2'
[tool.cibuildwheel.macos]
repair-wheel-command = 'delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}'
[tool.cibuildwheel.windows]
[tool.black]
line-length = 80
# skip-string-normalization = true