-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
60 lines (51 loc) · 1.29 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
[build-system]
requires = ['setuptools>=42']
build-backend = 'setuptools.build_meta'
[project]
name = "mimosa"
dynamic = ["version"]
description = "MIMOSA: Integrated Assessment Model for Cost-Benefit Analysis"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [{ name = "Kaj-Ivar van der Wijst", email = "k.vanderwijst@uu.nl" }]
urls = { Homepage = "https://utrechtuniversity.github.io/mimosa/" }
dependencies = [
"numpy>=1.22",
"pandas",
"pyomo",
"pint",
"pyyaml",
"scipy",
"networkx",
]
[tool.setuptools.dynamic]
version = { attr = "mimosa.__version__" }
[project.optional-dependencies]
test = ["pytest"]
docs = [
"mkdocs",
"mkdocs-open-in-new-tab",
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-handlers",
"mkdocs-plotly-plugin",
"mkdocs-table-reader-plugin",
"mkdocs-glichtbox",
"mkdocs-macros-plugin",
"mkdocs-glightbox",
"mike",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["mimosa"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"mimosa" = ["**/*"]
[tool.pytest.ini_options]
markers = [
"ipopt: marks tests as requiring IPOPT for optimisation (deselect with '-m \"not ipopt\"')",
"simulation: marks tests as doing a simulation (deselect with '-m \"not simulation\"')",
"serial",
]