-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See #149
- Loading branch information
Showing
7 changed files
with
72 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# SeisFlows Changelog | ||
|
||
## v2.1.1 | ||
|
||
- Updates and simplifies install procedure using 'environment.yml' and | ||
'pyproject.toml' files. | ||
- Docs: Adds contributor's guide message to main docs page |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: seisflows | ||
channels: | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- pip | ||
- obspy | ||
- cartopy | ||
- pyyaml | ||
# Pyatoa requirements, ensure they are installed via Conda | ||
- pyasdf | ||
- pillow | ||
- pypdf2 | ||
# Install Pyatoa via Pip which will install adjTomo tools | ||
- pip: | ||
- git+https://github.com/adjtomo/pyatoa@devel | ||
- -e . | ||
|
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,34 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0.0", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "seisflows" | ||
version = "2.1.1" | ||
description = "An automated workflow tool for full waveform inversion" | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{name = "adjTomo Dev Team"}, | ||
{email = "adjtomo@gmail.com"} | ||
] | ||
dependencies = [ | ||
"obspy", | ||
"pyyaml", | ||
"IPython", | ||
"dill", | ||
"pyatoa @ git+https://github.com/adjtomo/pyatoa@devel", | ||
] | ||
|
||
[project.optional-dependencies] | ||
test = ["pytest"] | ||
dev = ["pytest", "ipython", "ipdb"] | ||
|
||
[project.urls] | ||
homepage = "https://github.com/adjtomo/" | ||
documentation = "https://seisflows.readthedocs.io" | ||
repository = "https://github.com/adjtomo/seisflows" | ||
|
||
[project.scripts] | ||
seisflows = "seisflows.seisflows:main" |
This file was deleted.
Oops, something went wrong.