-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (28 loc) · 990 Bytes
/
pyproject.toml
File metadata and controls
30 lines (28 loc) · 990 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
30
[build-system]
# pip installs these into an isolated build venv before running setup.py.
# pybind11 must be a Python package (not just system headers) so CMake can
# locate it via python -m pybind11 --cmakedir inside the venv.
requires = [
"setuptools>=42",
"wheel",
"pybind11>=2.10",
]
build-backend = "setuptools.build_meta"
[project]
name = "equationsolver"
version = "1.0.0"
description = "Large-scale linear/nonlinear system solver with Excel-style formula engine"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [{ name = "nick-developer" }]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = ["numpy", "openpyxl"]
[project.urls]
Source = "https://github.com/nick-developer/constrained_data_simulator"