-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
100 lines (94 loc) · 2.7 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
98
99
100
################################################################################
# Copyright (c) 2013-2023, National Research Foundation (SARAO)
#
# Licensed under the BSD 3-Clause License (the "License"); you may not use
# this file except in compliance with the License. You may obtain a copy
# of the License at
#
# https://opensource.org/licenses/BSD-3-Clause
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
################################################################################
[metadata]
name = katsdpcontroller
description = Service providing control and monitoring services for the MeerKAT Science Data Processor
long_description = file: README.md
long_description_content_type = text/markdown
license = Modified BSD
author = MeerKAT SDP Team
author_email = [email protected]
url = https://github.com/ska-sa/katsdpcontroller
classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Scientific/Engineering :: Astronomy
[options]
package_dir =
= src
packages = find:
install_requires =
addict!=2.0.*,!=2.4.0
aiohttp~=3.9
aiohttp-jinja2
aiokatcp>=2.0.0
aiozk
async_timeout
dash>=1.18
dash-core-components
dash-html-components
dash-table
dash-dangerously-set-inner-html
decorator
docker
importlib-resources
jinja2
jsonschema>=3.0 # Version 3 implements Draft 7
katdal
katsdpmodels[aiohttp]
katsdptelstate[aio]
katsdpservices[argparse,aiomonitor]>=1.3
katportalclient
kazoo
netifaces
networkx>=2.0
numpy
packaging
prometheus_async
prometheus_client>=0.3.0,<0.4.0 # 0.4.0 forces _total suffix
pydot # For networkx.drawing.nx_pydot
pymesos>=0.3.6 # 0.3.6 implements reviveOffers with roles
rfc3987 # Used by jsonschema to validate URLs
yarl
www-authenticate
python_requires = >=3.8
scripts =
scripts/sdp_master_controller.py
scripts/sdp_product_controller.py
zip_safe = False # Need importlib.resources.files to return a real path
[options.packages.find]
where = src
[options.extras_require]
agent =
psutil
nvidia-ml-py
pycuda
test =
aioresponses>=0.6.4
async-solipsism>=0.7
open-mock-file
pyfakefs
pytest
pytest-asyncio>=0.23
pytest-mock
pytest-timeout
[options.package_data]
katsdpcontroller =
static/*
schemas/*
templates/*
assets/*