-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.63 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "expreccs"
description = "A framework to simulate regional and site reservoirs for CO2 storage"
authors = [{ name = "David Landa-Marbán", email = "dmar@norceresearch.no" },
{ name = "Tor Harald Sandve", email = "tosa@norceresearch.no" }]
maintainers = [{ name = "David Landa-Marbán", email = "dmar@norceresearch.no" },
{ name = "Tor Harald Sandve", email = "tosa@norceresearch.no" }]
dynamic = ["version"]
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "GPL-3.0"}
keywords = ["co2", "aquifer", "regional", "opm", "site", "coupling", "projection"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent"
]
dependencies = [
"mako",
"pandas",
"resdata",
"scipy",
"shapely",
"matplotlib",
]
requires-python = ">=3.8"
[tool.setuptools.dynamic]
version = {attr = "expreccs.__version__"}
[project.scripts]
expreccs = "expreccs.core.expreccs:main"
[project.urls]
Homepage = "https://cssr-tools.github.io/expreccs"
Repository = "https://github.com/cssr-tools/expreccs"
[tool.setuptools]
packages.find.where = ["src"]
platforms = ["all"]