forked from PandABlocks/PandABlocks-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
38 lines (32 loc) · 904 Bytes
/
Pipfile
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
32
33
34
35
36
37
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
# Pinning black stops us having to allow pre-releases globally
black = "==21.7b0"
# Pins to make lockfile usable on multiple Python versions and platforms
mypy = "*"
atomicwrites = "*"
typing-extensions = "*"
importlib-metadata = "*"
typed-ast = "*"
# Test and docs dependencies
pytest-cov = "*"
pytest-mypy = "*"
pytest-flake8 = "*"
pytest-black = "*"
pytest-asyncio = "*"
flake8-isort = "*"
isort = ">5.0"
sphinx-rtd-theme = "*"
[packages]
# All other package requirements from setup.cfg
pandablocks = {editable = true, extras = ["hdf5"], path = "."}
# Pins to make lockfile usable on multiple Python versions and platforms
numpy = "*"
[scripts]
tests = "python -m pytest"
docs = "sphinx-build -EWT --keep-going docs build/html"
# Delete any files that git ignore hides from us
gitclean = "git clean -fdX"