-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (59 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (59 loc) · 1.62 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "neqsim"
version = "3.15.0"
description = "NeqSim is a tool for thermodynamic and process calculations"
authors = [{ name = "Even Solbraa", email = "esolbraa@gmail.com" }]
requires-python = ">=3.9,<4"
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"JPype1>=1.7.0,<2",
"numpy>1.25.2",
"pandas>=2.0.3,<4",
]
[project.optional-dependencies]
interactive = [
"matplotlib>=3.7.0,<4",
"jupyter>=1.0.0,<2",
"tabulate>=0.9.0,<0.10",
]
[project.urls]
Homepage = "https://github.com/Equinor/neqsim-python"
Repository = "https://github.com/Equinor/neqsim-python"
[dependency-groups]
dev = [
"black>=25.0,<28.0",
"pytest>=8.0.0,<9",
"pre-commit>=3.6.0,<4",
"stubgenj>=0.2.12,<0.3",
"mypy>=1.10,<3",
]
[tool.uv]
default-groups = "all"
[tool.uv.build-backend]
# Allow namespace packages to include both neqsim and jneqsim-stubs
namespace = true
# Include the stub package in distributions using glob patterns
source-include = [
"src/jneqsim-stubs/**",
"src/jpype-stubs/**",
"src/neqsim/**/*.pyi",
"src/neqsim/py.typed",
]
[build-system]
requires = ["uv_build>=0.11.18,<0.12.0"]
build-backend = "uv_build"
[tool.mypy]
mypy_path = "src"
[tool.pytest.ini_options]
addopts = "-p no:faulthandler"