forked from aiidateam/aiida-hyperqueue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (68 loc) · 1.69 KB
/
pyproject.toml
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
[build-system]
requires = ["flit_core>=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "aiida-hyperqueue"
version = "0.1.0"
authors = [
{name = "Marnik Bercx"}
]
description = "AiiDA plugin for the HyperQueue metascheduler"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Framework :: AiiDA",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Natural Language :: English",
"Programming Language :: Python",
]
requires-python = ">=3.6"
dependencies = [
"aiida-core~=2.0",
]
[project.urls]
Source = "https://github.com/aiidateam/aiida-hyperqueue"
[project.optional-dependencies]
docs = [
"sphinx",
"myst-parser",
"sphinx-design",
"sphinx-book-theme",
"sphinxcontrib-details-directive~=0.1.0"
]
tests = [
"pgtest~=1.3.1",
"wheel~=0.31",
"coverage",
"pytest~=6.0",
"pytest-cov",
]
pre-commit = [
"pre-commit~=2.2",
"pylint>=2.5.0,<2.9"
]
[project.entry-points.'aiida.schedulers']
"hyperqueue" = "aiida_hyperqueue.scheduler:HyperQueueScheduler"
[project.entry-points.'aiida.cmdline.data']
"hyperqueue" = "aiida_hyperqueue.cli:data_cli"
[tool.pylint.format]
max-line-length = 125
[tool.pylint.messages_control]
disable = [
"too-many-ancestors",
"too-many-arguments",
"invalid-name",
"duplicate-code",
"anomalous-backslash-in-string",
]
[tool.pytest.ini_options]
python_files = "test_*.py example_*.py"
filterwarnings = [
"ignore::DeprecationWarning:aiida:",
"ignore::DeprecationWarning:plumpy:",
"ignore::DeprecationWarning:django:",
"ignore::DeprecationWarning:yaml:",
]