forked from Parallel-in-Time/pySDC
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
42 additions
and
17 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
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 |
---|---|---|
@@ -1,20 +1,24 @@ | ||
# added by check_manifest.py | ||
# added by check-manifest | ||
include *.cff | ||
include *.in | ||
include *.md | ||
include *.txt | ||
include *.rst | ||
include Doxyfile | ||
include *.yml | ||
include LICENSE | ||
include data/README | ||
include *.cff | ||
include pyproject.toml | ||
|
||
recursive-include docs *.bat | ||
recursive-include docs *.css | ||
recursive-include docs *.jpg | ||
recursive-include docs *.json | ||
recursive-include docs *.md | ||
recursive-include docs *.png | ||
recursive-include docs *.py | ||
recursive-include docs *.rst | ||
recursive-include docs *.sh | ||
recursive-include docs Makefile | ||
recursive-include etc *.yml | ||
recursive-include pySDC *.npy | ||
recursive-include pySDC *.npz | ||
recursive-include pySDC *.pkl | ||
recursive-include pySDC *.rst | ||
recursive-include pySDC *.txt | ||
recursive-include pySDC *.txt |
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 |
---|---|---|
|
@@ -4,12 +4,15 @@ build-backend = "flit_core.buildapi" | |
|
||
[project] | ||
name = 'pySDC' | ||
version = '5.0.0' | ||
version = '5.1.0' | ||
description = 'A Python implementation of spectral deferred correction methods and the likes' | ||
license = {text = "BSD-2-Clause"} | ||
readme = 'README.rst' | ||
readme = 'README.md' | ||
authors=[ | ||
{name='Robert Speck', email='[email protected]'}, | ||
{name='Thibaut Lunet', email='[email protected]'}, | ||
{name='Thomas Baumann', email='[email protected]'}, | ||
{name='Lisa Wimmer', email='[email protected]'}, | ||
] | ||
homepage = "http://www.parallel-in-time.org/pySDC/" | ||
repository = "https://github.com/Parallel-in-Time/pySDC/" | ||
|