Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
dask / setup.cfg
Size: Mime:
[flake8]
exclude = __init__.py,versioneer.py
ignore = 
	E20,   # Extra space in brackets
	E231,E241,  # Multiple spaces around ","
	E26,   # Comments
	E4,    # Import formatting
	E721,  # Comparing types instead of isinstance
	E731,  # Assigning lambda expression
	E741,  # Ambiguous variable names
	W503,  # line break before binary operator
	W504,  # line break after binary operator
	F811,  # redefinition of unused 'loop' from line 10
max-line-length = 120
per-file-ignores = 
	*_test.py:
	B011,
	**/tests/*:
	B011,

[isort]
sections = FUTURE,STDLIB,THIRDPARTY,DISTRIBUTED,FIRSTPARTY,LOCALFOLDER
profile = black
skip_gitignore = true
force_to_top = true
default_section = THIRDPARTY
known_first_party = dask
known_distributed = distributed

[versioneer]
VCS = git
style = pep440
versionfile_source = dask/_version.py
versionfile_build = dask/_version.py
tag_prefix = 
parentdir_prefix = dask-

[aliases]
test = pytest

[options.entry_points]
console_scripts = 
	dask = dask.__main__:main
dask.array.backends = 
	cupy = dask.array.cupy_entry_point:CupyBackendEntrypoint

[options.package_data]
dask = 
	py.typed

[tool:pytest]
markers = 
	network: Test requires an internet connection
	slow: Skipped unless --runslow passed
	gpu: marks tests we want to run on GPUs
addopts = -v -rsxfE --durations=10 --color=yes
filterwarnings = 
	ignore:can't resolve:ImportWarning
	error:::dask[.*]
	error:::pandas[.*]
	error:::numpy[.*]
	error:::distributed[.*]
	ignore:The distutils\.sysconfig module is deprecated, use sysconfig instead:DeprecationWarning:numpy
	ignore:Couldn't detect a suitable IP address:RuntimeWarning:distributed
	ignore:Not prepending group keys:FutureWarning
xfail_strict = true

[metadata]
license_files = 
	LICENSE.txt
	dask/array/NUMPY_LICENSE.txt

[mypy]
python_version = 3.9
platform = linux
plugins = numpy.typing.mypy_plugin
allow_untyped_decorators = false
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unreachable = true

[codespell]
ignore-words-list = coo,nd
skip = docs/source/changelog.rst

[egg_info]
tag_build = 
tag_date = 0