You need to sign in or sign up before continuing.
Commits on Source (10)
-
Cain, Payton David authored
-
Jeremy M Fee authored
Update documentation with administrative files See merge request !37
-
-
-
-
Jeremy M Fee authored
Add test for round-to-next-second branch.
-
Jeremy M Fee authored
instead of deprecated microsecond property setter.
-
Jeremy M Fee authored
Round microseconds in RawInputClient See merge request !38
-
Cain, Payton David authored
-
Jeremy M Fee authored
Update project to 1.2.1 See merge request !39
Showing
- CODE_OF_CONDUCT.MD 6 additions, 0 deletionsCODE_OF_CONDUCT.MD
- CONTRIBUTING.md 15 additions, 0 deletionsCONTRIBUTING.md
- DISCLAIMER.md 10 additions, 0 deletionsDISCLAIMER.md
- LICENSE.md 39 additions, 23 deletionsLICENSE.md
- code.json 41 additions, 0 deletionscode.json
- geomagio/TimeseriesUtility.py 25 additions, 0 deletionsgeomagio/TimeseriesUtility.py
- geomagio/edge/RawInputClient.py 13 additions, 2 deletionsgeomagio/edge/RawInputClient.py
- package.json 0 additions, 56 deletionspackage.json
- setup.py 1 addition, 1 deletionsetup.py
- test/TimeseriesUtility_test.py 16 additions, 0 deletionstest/TimeseriesUtility_test.py
- test/edge_test/RawInputClient_test.py 63 additions, 1 deletiontest/edge_test/RawInputClient_test.py
CODE_OF_CONDUCT.MD
0 → 100644
CONTRIBUTING.md
0 → 100644
DISCLAIMER.md
0 → 100644
code.json
0 → 100644
package.json
deleted
100644 → 0
{ | ||
"name": "geomag-algorithms", | ||
"version": "1.2.0", | ||
"homepage": "http://geomag.usgs.gov/", | ||
"repository": "https://github.com/usgs/geomag-algorithms.git", | ||
"description": "Geomagnetism algorithms.", | ||
"author": { | ||
"name": "Jeremy Fee", | ||
"email": "jmfee@usgs.gov" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "Abram Claycomb", | ||
"email": "aclaycomb@usgs.gov" | ||
} | ||
], | ||
"keywords": [ | ||
"usgs", | ||
"geomag", | ||
"hazdev" | ||
], | ||
"scripts": { | ||
"clean": "rimraf '**/*.pyc'", | ||
"coverage": "pytest --cov=geomagio --cov-report xml", | ||
"lint": "flake8 && echo \"No linting errors found\"", | ||
"test": "pytest test", | ||
"watch": "npm-watch" | ||
}, | ||
"watch": { | ||
"lint": { | ||
"extensions": "py", | ||
"patterns": [ | ||
"bin", | ||
"geomagio", | ||
"test" | ||
] | ||
}, | ||
"test": { | ||
"extensions": "py", | ||
"patterns": [ | ||
"bin", | ||
"geomagio", | ||
"test" | ||
] | ||
} | ||
}, | ||
"license": "Public Domain", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"npm-watch": "^0.3.0", | ||
"rimraf": "^2.6.2" | ||
}, | ||
"engines": { | ||
"node": ">=4" | ||
} | ||
} |