forked from reframe-hpc/reframe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
47 lines (43 loc) · 1.43 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
[metadata]
name = ReFrame-HPC
version = attr: reframe.VERSION
author = Swiss National Supercomputing Center (CSCS/ETH Zurich), ReFrame Project Developers
description = ReFrame is a powerful framework for writing system regression tests and benchmarks, specifically targeted to HPC systems
url = https://github.com/reframe-hpc/reframe
license = BSD 3-Clause
long_description = file: README_minimal.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 5 - Production/Stable
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 :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: BSD License
Operating System :: MacOS
Operating System :: POSIX :: Linux
Environment :: Console
[options]
packages = find_namespace:
python_requires = >=3.6
scripts = bin/reframe
install_requires =
archspec <= 0.2.2
argcomplete
argcomplete <= 3.1.2; python_version < '3.8'
jsonschema
lxml
PyYAML
requests
requests <= 2.27.1; python_version == '3.6'
semver
semver <= 2.13.0; python_version == '3.6'
[options.packages.find]
include = reframe,reframe.*,hpctestlib.*
[options.package_data]
reframe = schemas/*
[flake8]
ignore = E129,E221,E226,E241,E402,E272,E741,E742,E743,W504