@@ -5,8 +5,8 @@ build-backend = "setuptools.build_meta"
55[project ]
66name = " distributed"
77description = " Distributed scheduler for Dask"
8- maintainers = [{ name = " Matthew Rocklin" , email = " mrocklin@gmail.com" }]
9- license = { text = " BSD-3-Clause" }
8+ maintainers = [{name = " Matthew Rocklin" , email = " mrocklin@gmail.com" }]
9+ license = {text = " BSD-3-Clause" }
1010classifiers = [
1111 " Development Status :: 5 - Production/Stable" ,
1212 " Intended Audience :: Developers" ,
@@ -68,18 +68,17 @@ exclude = ["*tests*"]
6868namespaces = false
6969
7070[tool .setuptools .package-data ]
71- "*" = [" templates/index.html" , " template.html" ]
72- distributed = [" http/templates/*.html" , " py.typed" ]
71+ "*" = [
72+ " templates/index.html" ,
73+ " template.html" ,
74+ ]
75+ distributed = [
76+ " http/templates/*.html" ,
77+ " py.typed" ,
78+ ]
7379
7480[tool .isort ]
75- sections = [
76- " FUTURE" ,
77- " STDLIB" ,
78- " THIRDPARTY" ,
79- " DISTRIBUTED" ,
80- " FIRSTPARTY" ,
81- " LOCALFOLDER" ,
82- ]
81+ sections = [" FUTURE" , " STDLIB" , " THIRDPARTY" , " DISTRIBUTED" , " FIRSTPARTY" , " LOCALFOLDER" ]
8382profile = " black"
8483skip_gitignore = true
8584force_to_top = [" true" ]
@@ -157,11 +156,11 @@ minversion = "6"
157156markers = [
158157 " ci1: marks tests as belonging to 1 out of 2 partitions to run on CI ('-m \" not ci1\" ' for second partition)" ,
159158 " extra_packages: marks tests that require a special dependency to run." ,
160- " slow: marks tests as slow (deselected by default" , # select with '--runslow')
159+ " slow: marks tests as slow (deselected by default" , # select with '--runslow')
161160 " avoid_ci: marks tests as flaky or broken on CI on all OSs" ,
162161 " ipython: marks tests as exercising IPython" ,
163162 " gpu: marks tests we want to run on GPUs" ,
164- " leaking: ignore leaked resources" , # see pytest_resourceleaks.py for usage
163+ " leaking: ignore leaked resources" , # see pytest_resourceleaks.py for usage
165164 " workerstate: deterministic test for the worker state machine. Automatically applied to all tests that use the 'ws' fixture." ,
166165]
167166# pytest-timeout settings
@@ -244,7 +243,7 @@ exclude_lines = [
244243 " except ImportError" ,
245244 " @overload" ,
246245 " @abstractmethod" ,
247- " @abc.abstractmethod" ,
246+ " @abc.abstractmethod"
248247]
249248
250249[tool .coverage .html ]
0 commit comments