-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.41 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["Flowsheet_Class"]
[project]
name = "SFILES2"
version = "v1.1.1"
description = "Conversion between PFDs/P&IDs and SFILES 2.0 strings."
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"SFILES 2.0, PFD, chemical engineering",
]
authors = [
{ name = "Artur M. Schweidtmann", email = "A.Schweidtmann@tudelft.nl" },
{ name = "Gabriel Vogel", email = "G.Vogel@tudelft.nl" },
{ name = "Edwin Hirtreiter", email = "edwin.hirtreiter@tum.de" },
{ name = "Lukas Schulze Balhorn", email = "L.Schulzebalhorn@tudelft.nl" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib>=3.8.4",
"networkx>=3.2.1",
"numpy>=2.1.3",
"tabulate>=0.8.9",
"pyflowsheet>=0.2.2",
"pathfinding>=1.0.1",
"ipython>=7.30.1",
"ipykernel",
]
[project.urls]
Homepage = "https://www.pi-research.org/"
Source = "https://github.com/process-intelligence-research/SFILES2"
[tool.ruff]
line-length = 80
[tool.ruff.lint]
extend-select = ["Q", "RUF100", "UP", "I", "E", "F"]
extend-ignore = [
"E501", # line too long
]
isort = { combine-as-imports = true }
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.lint.pydocstyle]
convention = "google"