-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
77 lines (65 loc) · 2.04 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.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "aiida_firecrest"
dynamic = ["version", "description"]
authors = [{name = "Chris Sewell", email = "chrisj_sewell@hotmail.com"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: AiiDA",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = ["aiida", "firecrest"]
requires-python = ">=3.9"
dependencies = [
"aiida-core@git+https://github.com/aiidateam/aiida-core.git@954cbdd",
"click",
"pyfirecrest@git+https://github.com/eth-cscs/pyfirecrest.git@6cae414",
"pyyaml",
]
[project.urls]
Home = "http://github.com/aiidateam/aiida-firecrest"
[project.scripts]
aiida-firecrest-cli = "aiida_firecrest.cli:main"
[project.entry-points."aiida.schedulers"]
firecrest = "aiida_firecrest.scheduler:FirecrestScheduler"
[project.entry-points."aiida.transports"]
firecrest = "aiida_firecrest.transport:FirecrestTransport"
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "pytest-regressions", "pytest-timeout", "pgtest"]
docs = ["furo==2023.9.10"]
[tool.flit.sdist]
exclude = [
"docs/",
"tests/",
]
[tool.ruff]
line-length = 120
lint.extend-select = ["A", "B", "C4", "ICN", "ISC", "N", "RUF", "SIM"]
# extend-ignore = []
[tool.isort]
profile = "black"
src_paths = ["aiida_firecrest", "tests"]
force_sort_within_sections = true
[tool.mypy]
show_error_codes = true
scripts_are_modules = true
warn_redundant_casts = true
warn_unused_ignores = true
strict = true
# [[tool.mypy.overrides]]
# module = 'aiida.*'
# ignore_missing_imports = true
[tool.pytest.ini_options]
timeout = 80