-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
47 lines (44 loc) · 1.45 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
[build-system]
requires = [
"scikit-build-core==0.11.6",
"pybind11>=2.10"
]
build-backend = "scikit_build_core.build"
[project]
name = "nestpy"
version = "2.1.0"
description = "Python bindings for the NEST noble element simulation"
authors = [
{name = "Sam Eriksen", email = "sam.eriksen@bristol.ac.uk"},
{name = "Albert Baker", email = "k2371191@kcl.ac.uk"},
{name = "Greg Rischbieter", email = "rischbie@umich.edu"},
{name = "Nicholas Carrara", email = "ncarrara.physics@gmail.com"},
{name = "Sophia Andaloro", email = "sja5@rice.edu"},
{name = "Christopher Tunnell", email = "tunnell@rice.edu"},
]
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"numpy",
"pandas",
"awkward"
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: C++',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Physics',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux'
]
[tool.scikit-build]
minimum-version = "build-system.requires"
[tool.isort]
profile = "black"