-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (75 loc) · 2.79 KB
/
pyproject.toml
File metadata and controls
87 lines (75 loc) · 2.79 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
# Pin/set minimum backend versions as you prefer
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
# --- REQUIRED for PyPI publishing ---
name = "pyfastwell" # must match distribution name
version = "0.1.2" # or use dynamic versioning (see below)
description = "This project provides tools for fast performance calculations for complex geothermal well architecturses." # short description
readme = "README.md" # long description on PyPI
requires-python = ">=3.11" # adjust as needed
license = { file = "LICENSE" }
# maintainers = [{ name = "Stephan de Hoop", email = "[email protected]" }]
# --- RECOMMENDED metadata for discovery on PyPI ---
keywords = ["geothermal", "energy", "npv", "lcoe", "economics", "techno-economics", "well simulation", "analytical element method"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
# --- Runtime dependencies (from your setup.py install_requires) ---
dependencies = [
"numpy",
"pandas",
"pydantic",
"pyyaml",
"matplotlib",
"scipy",
"shapely",
"xarray",
"pythermonomics",
"pywellgeo",
"ipykernel>=7.2.0",
]
[project.optional-dependencies]
# from your extras_require
docs = [
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material",
"mike",
]
notebook = [
"notebook>=7", # This installs the Jupyter Notebook server
"jupyterlab>=4", # JupyterLab interface
"ipykernel>=6", # Kernel support for notebooks
"ipywidgets>=8", # Interactive widgets
"matplotlib>=3.8", # Plotting library
"plotly>=5.20", # Interactive plots
]
[project.urls]
Homepage = "https://github.com/TNO/pyfastwell" # fill in
Repository = "https://github.com/TNO/pyfastwell" # fill in
Documentation = "https://tno.github.io/pyfastwell" # fill in
#Issues = "https://github.com/your/repo/issues" # fill in
# --- Setuptools configuration (src-layout) ---
[tool.setuptools]
# include-package-data = true # enable if you ship package data
[tool.setuptools.packages.find]
where = ["src"]
# --- Tooling configs (moved from setup.cfg) ---
[tool.isort]
profile = "black"
line_length = 88
# (Optional) keep formatter in sync
[tool.black]
line-length = 88
target-version = ["py39"]