-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathPipfile
More file actions
31 lines (28 loc) · 993 Bytes
/
Copy pathPipfile
File metadata and controls
31 lines (28 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
pytest-cov = "*"
pytest-flake8 = "*"
sphinx-rtd-theme = "*"
# switch to main repo after PR https://github.com/Holzhaus/sphinx-multiversion/pull/60 is merged
sphinx-multiversion = {editable = true,git = "https://github.com/dls-controls/sphinx-multiversion.git",ref = "only-arg"}
setuptools-dso = "*"
aioca = "*"
pytest-asyncio = "*"
[packages]
# All other package requirements from setup.py
softioc = {editable = true, path = "."}
# Apart from the epicscorelibs which comes from pyproject.toml so needs to be here too
epicscorelibs = "*"
# Add some other useful extras
cothread = "*"
scipy = "*"
aioca = "*"
[scripts]
# Put coverage here so we don't interfere with debugging in the IDE
# Put flake8 here so we don't run it during cibuildwheel tests
tests = "python -m pytest --cov=softioc --cov-report term --flake8"
docs = "sphinx-build -EWT --keep-going docs build/html"
gitclean = "git clean -fdX"