-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…1052) * migrate setup to hatch * migrate setup to hatch * remove old travis-related file * add PEP517 wheel testing to GitHub workflow --------- Co-authored-by: swryan <swryan@users.noreply.github.com>
- Loading branch information
Showing
4 changed files
with
88 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "dymos" | ||
dynamic = ["version"] | ||
description = "Open-Source Optimization of Dynamic Multidisciplinary Systems" | ||
license = "Apache-2.0" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Natural Language :: English", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Topic :: Scientific/Engineering", | ||
] | ||
dependencies = [ | ||
"numpy", | ||
"openmdao>=3.27.0", | ||
"scipy", | ||
] | ||
|
||
[project.optional-dependencies] | ||
all = [ | ||
"dymos[docs]", | ||
"dymos[notebooks]", | ||
"dymos[test]", | ||
] | ||
docs = [ | ||
"bokeh", | ||
"ipython", | ||
"jax", | ||
"jaxlib", | ||
"jupyter", | ||
"jupyter-book==0.14", | ||
"matplotlib", | ||
"nbconvert", | ||
"notebook", | ||
"numpydoc>=1.1", | ||
"redbaron", | ||
"tabulate", | ||
] | ||
notebooks = [ | ||
"ipython", | ||
"notebook", | ||
"tabulate", | ||
] | ||
test = [ | ||
"aiounittest", | ||
"matplotlib", | ||
"numpydoc>=1.1", | ||
"packaging", | ||
"playwright>=1.20", | ||
"pycodestyle", | ||
"testflo>=1.3.6", | ||
] | ||
|
||
[project.entry-points.openmdao_report] | ||
"dymos.linkage" = "dymos.visualization.linkage.report:_linkage_report_register" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/OpenMDAO/dymos" | ||
|
||
[tool.hatch.version] | ||
path = "dymos/__init__.py" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
include = [ | ||
"/dymos", | ||
] |
Binary file not shown.