-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
82 lines (73 loc) · 2.09 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
[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 = "Longbow"
dynamic = ["version"] # read from longbow/__init__.py
description = "Biomolecular simulation remote job submission tool."
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: System :: Distributed Computing',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix'
]
keywords = ["aiida", "plugin", "gromacs", "aiida-gromacs"]
requires-python = ">=3.4"
dependencies = []
[project.urls]
Source = "https://github.com/HECBioSim/Longbow"
[project.optional-dependencies]
testing = [
"pgtest==1.3.2",
"wheel==0.43.0",
"coverage[toml]",
"pytest==8.2.2",
"pytest-cov==5.0.0",
"pytest-sugar==1.0.0"
]
pre-commit = [
"pre-commit==3.7.1",
"pylint==3.2.5"
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-contentui",
"sphinxcontrib-details-directive",
"sphinx_copybutton",
"furo",
"markupsafe<2.1"
]
[project.scripts]
longbow = "longbow:launcher"
[tool.flit.module]
name = "longbow"
[tool.pylint.format]
max-line-length = 125
[tool.pylint.messages_control]
disable = [
"too-many-ancestors",
"invalid-name",
"duplicate-code",
]
[tool.pytest.ini_options]
# Configuration for [pytest](https://docs.pytest.org)
python_files = "test_*.py example_*.py"
filterwarnings = []
[tool.coverage.run]
# Configuration of [coverage.py](https://coverage.readthedocs.io)
# reporting which lines of your plugin are covered by tests
source=["longbow"]