-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
24 lines (24 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "python3",
"version": "3.0.0",
"description": "Data analysis utilities for ARPES in Python",
"main": "index.js",
"repository": "git@gitlab.com:lanzara-group/python-arpes.git",
"author": "Conrad Stansbury <chstansbury@gmail.com>",
"license": "GPL-3.0",
"scripts": {
"test": "pytest -c pytest-config/pytest.ini",
"integration-test": "pytest -c pytest-config/pytest.ini tests/test_qt.py",
"watch-test": "pytest -c pytest-config/pytest-watch.ini",
"watch-coverage": "pytest -c pytest-config/pytest-coverage.ini -f",
"coverage": "pytest -c pytest-config/pytest-coverage.ini",
"check-black": "black --config pyproject.toml --check",
"check-docstyle": "pydocstyle --config pyproject.toml",
"build-docs": "python scripts/build_docs.py",
"build-pypi": "python -m build --sdist --wheel .",
"build-conda": "yarn build-pypi && conda-build purge-all && conda-build ./conda -c anaconda -c conda-forge --output-folder conda-dist --numpy 1.20"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.6"
}
}