forked from cylc/cylc-uiserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
97 lines (92 loc) · 3.11 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
97
# 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-uiserver
version = attr: cylc.uiserver.__version__
url = https://github.com/cylc/cylc-uiserver/
description = Cylc UI Server
long_description = file: README.md
long_description_content_type='text/markdown'
license = GPL
license_file = COPYING
platforms = any
classifiers =
Environment :: Console
Environment :: Web Environment
Intended Audience :: Developers
Intended Audience :: System Administrators
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Atmospheric Science
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: POSIX
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
[options]
packages = find_namespace:
python_requires = >=3.7
include_package_data = True
install_requires =
# NB: We have cylc-flow at the top to force it to install its transitive
# dependencies first. This way, if other dependencies (e.g. jupyterhub)
# don't pin versions, we will get whatever cylc-flow needs, and not the
# bleeding-edge version.
# NB: no graphene version specified; we only make light use of it in our
# own code, so graphene-tornado's transitive version should do.
cylc-flow>=8.0b2
graphene
graphene-tornado==2.6.*
graphql-ws>=0.3.1,<0.4
jupyter_server>=1.10.2
tornado>=6.1.0 # matches jupyter_server value
traitlets>=5
[options.packages.find]
include = cylc*
[options.entry_points]
# jupyter commands
console_scripts =
jupyter-cylc = cylc.uiserver.scripts.gui:main
jupyter-cylchubapp = cylc.uiserver.scripts.hubapp:main [hub]
# cylc commands
cylc.command =
gui = cylc.uiserver.scripts.gui:main
hub = cylc.uiserver.scripts.hub:main [hub]
hubapp = cylc.uiserver.scripts.hubapp:main [hub]
[options.extras_require]
hub =
jupyterhub==1.4.*
tests =
coverage>=5.0.0
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.14.0
flake8>=3.0.0
mypy>=0.900
pytest-asyncio>=0.14.0
pytest-cov>=2.8.0
pytest-mock
pytest-tornasync>=0.5.0
pytest>=6
types-pkg_resources>=0.1.2
all =
%(hub)s
%(tests)s