-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (42 loc) · 1004 Bytes
/
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "facit"
dynamic = ["version"]
description = ''
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = []
authors = [
{ name = "Olle Vidner", email = "olle@vidner.se" },
{ name = "Camilla Wehlin" },
{ name = "Anton Wiberg" },
]
maintainers = [{ name = "Olle Vidner", email = "olle@vidner.se" }]
dependencies = [
"jsonpickle",
"openmdao",
"numpy",
"pandas",
"pydantic",
"pydoe2",
"xarray",
"zarr",
]
[project.optional-dependencies]
test = ["deepdiff", "hypothesis", "pytest"]
[project.urls]
Homepage = "https://github.com/ovidner/facit"
[project.entry-points.pyinstaller40]
hook-dirs = "facit._pyinstaller_hooks:get_hook_dirs"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build]
exclude = [".github", "conda-recipe"]
[tool.pytest.ini_options]
addopts = "--doctest-modules"
testpaths = ["tests", "src"]
[tool.ruff.isort]
known-first-party = ["facit"]