-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
42 lines (37 loc) · 1.02 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
[metadata]
name = dask-hpcconfig
author_email = [email protected]
license = MIT
description = Configuration for various dask clusters
long_description=file: README.md
long_description_content_type=text/markdown
url = https://github.com/umr-lops/dask-hpcconfig
project_urls =
Documentation=https://dask-hpcconfig.readthedocs.io
[options]
packages = find:
include_package_data = True
python_requires = >=3.8
install_requires =
pyyaml
dask >=2022.11.0
distributed >=2022.11.0
[options.entry_points]
console_scripts =
dask-hpcconfig=dask_hpcconfig.cli:app
[options.extras_require]
jobqueue =
dask-jobqueue >=0.8
[options.package_data]
dask_hpcconfig =
clusters.yaml
[flake8]
ignore =
# E203: whitespace before ':' - doesn't work well with black
# E402: module level import not at top of file
# E501: line too long - let black worry about that
# E731: do not assign a lambda expression, use a def
# W503: line break before binary operator
E203, E402, E501, E731, W503
exclude =
.eggs