-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
54 lines (46 loc) · 1.55 KB
/
setup.cfg
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[metadata]
name = sphinx-graphql
description = Sphinx utilities for documenting GraphQL APIs
url = https://github.com/dls-controls/sphinx-graphql
author = Tom Cobb, Callum Forrester
author_email = [email protected], [email protected]
license = Apache License 2.0
long_description = file: README.rst
long_description_content_type = text/x-rst
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = find:
install_requires =
sphinx
[options.package_data]
sphinx-graphql = *.js
[options.packages.find]
# Don't include our tests directory in the distribution
exclude = tests
[mypy]
# Ignore missing stubs for modules we use
ignore_missing_imports = True
[isort]
profile=black
float_to_top=true
skip=setup.py,conf.py,build
[flake8]
# Make flake8 respect black's line length (default 88),
max-line-length = 88
extend-ignore =
E203, # See https://github.com/PyCQA/pycodestyle/issues/373
F811, # support typing.overload decorator
F722, # allow Annotated[typ, some_func("some string")]
[tool:pytest]
# Run pytest with all our checkers, and don't spam us with massive tracebacks on error
addopts =
--tb=native -vv --flake8 --black --mypy --doctest-modules --doctest-glob="*.rst"
--cov=sphinx_graphql --cov-report term --cov-report xml:cov.xml
[coverage:run]
# This is covered in the versiongit test suite so exclude it here
omit = */_version_git.py