-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 909 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (24 loc) · 909 Bytes
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
[build-system]
requires = ["scikit-build-core>=0.5.0", "pybind11>=2.11.1"]
build-backend = "scikit_build_core.build"
[project]
name = "black_scholes_solver"
version = "0.5.0"
description = "A high-performance Black-Scholes PDE solver using Crank-Nicolson"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"} # Automatically links your MIT license
authors = [
{ name = "Cameron Akhtar" }
]
[project.urls]
"Homepage" = "https://github.com/YourUsername/BlackScholesSolver"
"Bug Tracker" = "https://github.com/YourUsername/BlackScholesSolver/issues"
[tool.scikit-build]
# This tells the build system we are using CMake and generating a wheel
wheel.expand-macos-universal-tags = true
[tool.pytest.ini_options]
# Tell pytest where your actual tests live
testpaths = ["tests"]
# Tell pytest which folders to completely ignore
norecursedirs = ["build_dir", ".venv", "build", "_deps"]