-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (32 loc) · 891 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
[project]
name = "openmdao-catia"
dynamic = ["version"]
dependencies = ["facit", "numpy", "openmdao", "pywin32"]
authors = [{ name = "Olle Vidner", email = "[email protected]" }]
description = ''
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
[project.optional-dependencies]
test = ["hypothesis", "psutil", "pytest"]
dev = ["invoke", "nox", "pre-commit"]
[project.urls]
Homepage = "https://github.com/ovidner/openmdao-catia"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.conda-lock]
channels = ["conda-forge", "defaults"]
platforms = ["win-64"]
[tool.conda-lock.dependencies]
python = ">=3.9"
pip = "*"
[tool.hatch.build]
exclude = [".github"]
[tool.hatch.version]
source = "vcs"
[tool.pytest.ini_options]
addopts = "--doctest-modules"
testpaths = ["tests", "src"]
[tool.ruff.isort]
known-first-party = ["openmdao_catia"]