-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.08 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
[build-system]
requires = ["hatchling", "numpy>=2.0"]
build-backend = "hatchling.build"
[project]
name = "CADRE"
dynamic = ["version"]
description = "Implementation of the CADRE CubeSat design problem for OpenMDAO 2.x"
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Kenneth T. Moore", email = "kenneth.t.moore-1@nasa.gov" },
]
maintainers = [
{ name = "Kenneth T. Moore", email = "kenneth.t.moore-1@nasa.gov" },
]
keywords = [
"CADRE",
"openmdao",
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy<2.0",
"openmdao>=2.3",
"six",
]
[tool.hatch.metadata]
allow-direct-references = true
[project.optional-dependencies]
all = [
"CADRE[MBI,test]",
]
MBI = [
"MBI@git+https://github.com/OpenMDAO/MBI",
]
test = [
"parameterized",
"testflo",
]
[project.urls]
Download = "http://github.com/OpenMDAO/CADRE.git"
Homepage = "http://github.com/OpenMDAO/CADRE.git"
[tool.hatch.version]
path = "CADRE/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/CADRE",
]