-
Notifications
You must be signed in to change notification settings - Fork 1
/
Pipfile
34 lines (31 loc) · 849 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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
# Pinning black stops us having to allow pre-releases globally
black = "==19.10b0"
# Pins to make lockfile usable on multiple Python versions and platforms
mypy = "*"
atomicwrites = "*"
typing-extensions = "*"
importlib-metadata = "*"
# Test and docs dependencies
pytest-cov = "*"
pytest-mypy = "*"
pytest-flake8 = "*"
pytest-black = "*"
flake8-isort = "*"
isort = ">5.0"
sphinx-rtd-theme = "*"
sphinx-testing = "*"
types-docutils = "*"
[packages]
# All other package requirements from setup.cfg
sphinx-graphql = {editable = true,path = "."}
[scripts]
tests = "python -m pytest"
docs = "sphinx-build -EWT --keep-going docs build/html"
build = "python setup.py sdist bdist_wheel"
# Delete any files that git ignore hides from us
gitclean = "git clean -fdX"