-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
154 lines (133 loc) · 4.06 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
[build-system]
# build the package with [flit](https://flit.readthedocs.io)
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
# See https://www.python.org/dev/peps/pep-0621/
name = "aiida-aurora"
dynamic = ["version"] # read from aiida_aurora/__init__.py
description = "AiiDA plugin for the Aurora platform."
authors = [
{ name = "Loris Ercole", email = "[email protected]" },
{ name = "Francisco F. Ramirez", email = "[email protected]" },
{ name = "Edan Bainglass", email = "[email protected]" },
{ name = "Giovanni Pizzi", email = "[email protected]" },
]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Development Status :: 3 - Alpha",
"Framework :: AiiDA"
]
keywords = ["aiida", "plugin", "aurora"]
requires-python = ">=3.9"
dependencies = [
"aiida-core>=2.0,<3",
"aiida-ssh2win>=0.2",
"dgbowl-schemas>=116",
"scipy>=1.5.4,<2",
"pandas~=1.5",
]
[project.urls]
Source = "https://github.com/EmpaEconversion/aiida-aurora"
[project.optional-dependencies]
testing = [
"pgtest~=1.3.1",
"wheel~=0.31",
"coverage[toml]",
"pytest~=6.0",
"pytest-cov"
]
pre-commit = ["pre-commit~=2.2"]
docs = [
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-contentui",
"sphinxcontrib-details-directive",
"furo",
"markupsafe<2.1"
]
[project.entry-points."aiida.data"]
"aurora.batterysample" = "aiida_aurora.data.battery:BatterySampleData"
"aurora.batterystate" = "aiida_aurora.data.battery:BatteryStateData"
"aurora.cyclingspecs" = "aiida_aurora.data.experiment:CyclingSpecsData"
"aurora.tomatosettings" = "aiida_aurora.data.control:TomatoSettingsData"
[project.entry-points."aiida.calculations"]
"aurora.fake" = "aiida_aurora.calculations.fake:BatteryFakeExperiment"
"aurora.cycler" = "aiida_aurora.calculations.cycler:BatteryCyclerExperiment"
[project.entry-points.'aiida.workflows']
'aurora.cycling_sequence' = 'aiida_aurora.workflows.cycling_sequence:CyclingSequenceWorkChain'
[project.entry-points."aiida.calculations.monitors"]
"aurora.monitors.capacity_threshold" = "aiida_aurora.monitors:monitor_capacity_threshold"
[project.entry-points."aiida.parsers"]
"aurora" = "aiida_aurora.parsers:TomatoParser"
[project.entry-points."aiida.schedulers"]
"tomato" = "aiida_aurora.scheduler:TomatoScheduler"
[project.entry-points."aiida.cmdline.data"]
"aurora" = "aiida_aurora.cli:data_cli"
[tool.flit.module]
name = "aiida_aurora"
[tool.pylint.format]
max-line-length = 125
[tool.pylint.messages_control]
disable = [
"too-many-ancestors",
"invalid-name",
"duplicate-code",
# black compatibility
"C0330",
"C0326",
]
[tool.pytest.ini_options]
# Configuration for [pytest](https://docs.pytest.org)
python_files = "test_*.py example_*.py"
filterwarnings = [
"ignore::DeprecationWarning:aiida:",
"ignore::DeprecationWarning:plumpy:",
"ignore::DeprecationWarning:yaml:",
]
[tool.coverage.run]
# Configuration of [coverage.py](https://coverage.readthedocs.io)
# reporting which lines of your plugin are covered by tests
source = ["aiida_aurora"]
[tool.isort]
# Configuration of [isort](https://isort.readthedocs.io)
line_length = 120
force_sort_within_sections = true
sections = [
'FUTURE',
'STDLIB',
'THIRDPARTY',
'AIIDA',
'FIRSTPARTY',
'LOCALFOLDER'
]
known_aiida = ['aiida']
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py38
[testenv]
usedevelop=True
[testenv:py{38,39,310}]
description = Run the test suite against a python version
extras = testing
setenv =
AIIDA_WARN_v3 = 1
commands = pytest {posargs}
[testenv:pre-commit]
description = Run the pre-commit checks
extras =
pre-commit
testing
commands = pre-commit run {posargs}
[testenv:docs]
description = Build the documentation
extras = docs
commands = sphinx-build -nW --keep-going -b html {posargs} docs/source docs/build/html
commands_post = echo "open file://{toxinidir}/docs/build/html/index.html"
"""