-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
81 lines (77 loc) · 1.88 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
[build-system]
build-backend = "scikit_build_core.build"
requires = [
"build",
"cmeel-boost>=1.80",
"cmeel-eigen>=3",
"cmeel-metis",
"cython>=0.29",
"gmsh>=4.10",
"matplotlib",
"mpi4py",
"ninja>=1.5",
"numpy>=1.19",
"petsc",
"scipy",
"scikit-build-core",
]
[tool.scikit-build]
build.verbose = true
logging.level = "DEBUG"
wheel.packages = ["pysteps/steps"]
ninja.make-fallback = false
sdist.exclude = [
".*",
"*.nix",
"mass_replace",
"doc",
"requirements.txt",
"/dist",
"/test",
"MolSim Functional Requirements",
]
[tool.scikit-build.cmake.define]
STEPS_INSTALL_PYTHON_DEPS = "OFF"
USE_PETSC = "ON"
BUILD_TESTING = "OFF"
[project]
name = "STEPS"
authors = [{name = "STEPS Development Team", email = "[email protected]"}]
description = "STochastic Engine for Pathway Simulation"
version="5.0.3"
dependencies = [
"cython>=0.29",
"h5py",
"matplotlib",
"mpi4py",
"numpy>=1.19",
"scipy",
]
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE.md"}
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console :: Curses",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: C++",
"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",
"Topic :: Scientific/Engineering :: Chemistry",
]
[project.optional-dependencies]
bundle = [
"cmeel-boost>=1.80",
"cmeel-eigen>=3",
"cmeel-metis",
"gmsh>=4.10",
"petsc",
]