-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* replaced old-school setup.py with new-school pyproject.toml file, removed ununsed environment.yaml file which may be replaced later when Conda install is attempted * direct pip install will not work due to some dependency errors with cartopy and GEOS but .toml file still valid. added conda-required environment.yaml file which will be used to do the entire install procedure
- Loading branch information
Showing
5 changed files
with
45 additions
and
35 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 |
---|---|---|
@@ -1,7 +1,13 @@ | ||
name: pysep | ||
channels: | ||
- conda-forge | ||
- defaults | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- obspy | ||
- cartopy | ||
- pip | ||
- obspy | ||
- cartopy | ||
- pyyaml | ||
- pip: | ||
- git+https://github.com/krischer/llnl_db_client.git | ||
- -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 = "pysep" | ||
version = "0.2.0" | ||
description = "Python Seismogram Extraction and Processing" | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
license = {file = "LICENSE.txt"} | ||
authors = [ | ||
{name = "adjTomo Dev Team"}, | ||
{email = "adjtomo@gmail.com"} | ||
] | ||
dependencies = [ | ||
"obspy", | ||
"cartopy", | ||
"pyyaml", | ||
"llnl_db_client @ git+https://github.com/krischer/llnl_db_client.git" | ||
] | ||
|
||
[project.optional-dependencies] | ||
test = ["pytest"] | ||
dev = ["pytest", "ipython", "ipdb"] | ||
|
||
[project.urls] | ||
homepage = "https://github.com/adjtomo/" | ||
documentation = "https://github.com/adjtomo/pysep/wiki" | ||
repository = "https://github.com/adjtomo/pysep" | ||
|
||
[project.scripts] | ||
pysep = "pysep.pysep:main" | ||
recsec = "pysep.recsec:main" |
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 was deleted.
Oops, something went wrong.