forked from cylc/cylc-rose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
96 lines (91 loc) · 2.88 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
90
91
92
93
94
95
96
# THIS FILE IS PART OF THE ROSE-CYLC PLUGIN FOR THE CYLC WORKFLOW ENGINE.
# Copyright (C) NIWA & British Crown (Met Office) & Contributors.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
[metadata]
name = cylc-rose
version = attr: cylc.rose.__version__
long_description = file: README.md
long_description_content_type = text/markdown
author = British Crown (Met Office) & Contributors
author_email = [email protected]
url=https://cylc.github.io/cylc-doc/latest/html/plugins/cylc-rose.html
description = A Cylc plugin providing support for the Rose rose-suite.conf file.
keywords =
cylc
rose
workflow
configuration
workflow-engine
workflow-automation
workflow-management
license = GPL
license_file = COPYING
platforms = any
classifiers =
Environment :: Console
Intended Audience :: Developers
Intended Audience :: System Administrators
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering :: Atmospheric Science
python_requires = >=3.7
[options]
packages = find_namespace:
python_requires = >=3.7
include_package_data = True
install_requires =
metomi-rose==2.3.*
cylc-flow==8.3.*
metomi-isodatetime
ansimarkup
jinja2
[options.packages.find]
include = cylc*
[options.extras_require]
tests =
coverage>=5.0.0
pytest
# https://github.com/pytest-dev/pytest-asyncio/issues/705
pytest-asyncio==0.21.*
pytest-cov
pytest-xdist>=2
lint =
flake8
flake8-broken-line>=0.3.0
flake8-bugbear>=21.0.0
flake8-builtins>=1.5.0
flake8-comprehensions>=3.5.0
flake8-debugger>=4.0.0
flake8-mutable>=1.2.0
flake8-simplify>=0.15.1
flake8-type-checking; python_version > "3.7"
mypy>=0.910
all =
%(tests)s
%(lint)s
[options.entry_points]
cylc.pre_configure =
rose = cylc.rose.entry_points:pre_configure
cylc.post_install =
rose_opts = cylc.rose.entry_points:post_install
rose.commands =
stem = cylc.rose.entry_points:rose_stem