-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
62 lines (55 loc) · 1.36 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
[build-system]
requires = ["flit_core>=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "aiida-hyperqueue"
dynamic = ['version']
authors = [
{name = "Marnik Bercx"},
{name = "Jusong Yu"},
]
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.9"
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",
"coverage~=7.0",
"pytest~=7.0",
"pytest-cov~=4.1",
]
pre-commit = [
"pre-commit~=3.5",
'mypy~=1.10.0',
]
[project.entry-points.'aiida.schedulers']
"hyperqueue" = "aiida_hyperqueue.scheduler:HyperQueueScheduler"
[project.scripts]
aiida-hq = 'aiida_hyperqueue.cli:cmd_root'
[tool.pytest.ini_options]
python_files = "test_*.py example_*.py"
filterwarnings = [
'ignore:Creating AiiDA configuration folder.*:UserWarning',
]