-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
89 lines (78 loc) · 2.09 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[metadata]
name = tethys_dask_scheduler
version = 2.0.0
description = A Dask scheduler with custom SchedulerPlugins to support integration with Tethys Platform
author = Nathan Swain
author_email = [email protected]
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
license_file = LICENSE
url = https://github.com/tethysplatform/tethys_dask_scheduler
project_urls =
Documentation = http://docs.tethysplatform.org/en/stable/tutorials/dask/setup_scheduler.html
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: GIS
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Software Development :: Libraries
Topic :: Utilities
[options]
packages = find:
include_package_data = True
python_requires = >= 3.6
install_requires =
click
distributed
[options.packages.find]
exclude = tests
[options.extras_require]
tests =
tox
[coverage:run]
source = tethys_dask_scheduler
omit = *.egg-info, tests/*
[flake8]
max-line-length = 120
exclude = .git,build,dist,__pycache__,.eggs,*.egg-info
[tool:pytest]
addopts = --cov=tethys_dask_scheduler --cov-append --cov-report=term-missing
[tox:tox]
isolated_build = True
envlist = py39, flake8, clean
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
[testenv]
deps =
pytest
pytest-cov
commands =
pytest tests
[testenv:flake8]
skip_install = True
deps =
flake8
commands =
flake8 tethys_dask_scheduler
[testenv:clean]
skip_install = True
deps =
coverage
commands =
coverage erase