-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 953 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 953 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
31
32
[tool.poetry]
name = "neqsim"
version = "3.4.0"
homepage = "https://github.com/Equinor/neqsim-python"
description = "NeqSim is a tool for thermodynamic and process calculations"
authors = ["Even Solbraa <esolbraa@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/Equinor/neqsim-python"
classifiers = ["Operating System :: OS Independent"]
[tool.poetry.dependencies]
python = "^3.9"
JPype1 = "^1.5.0"
numpy = ">1.25.2"
pandas = "^2.0.3"
matplotlib = { version = "^3.7.0", optional = true }
jupyter = { version = "^1.0.0", optional = true }
tabulate = { version = "^0.9.0", optional = true }
[tool.poetry.group.dev.dependencies]
black = ">=23.12,<25.0"
pytest = "^7.4.3"
pre-commit = "^3.6.0"
stubgenj = "^0.2.12" # Generate type stubs for Java classes
[tool.poetry.extras]
interactive = ["matplotlib", "jupyter", "tabulate"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"