forked from CharlieLaughton/crossflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (69 loc) · 2.07 KB
/
pyproject.toml
File metadata and controls
77 lines (69 loc) · 2.07 KB
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]
# 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 = "crossflow"
dynamic = ["version"]
description = "Crossflow allows you to build and execute complex workflows that chain together command-line driven tools."
authors = [
{name = "Charlie Laughton", email = "[email protected]"},
{name = "Christian Suess", email = "[email protected]"},
{name = "James Gebbie-Rayet", email = "[email protected]"},
{name = "Sam Cox", email = "[email protected]"},
]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Development Status :: 3 - Alpha"
]
keywords = ["hpc", "workflows", "molecular dynamics"]
requires-python = ">=3.11"
dependencies = [
"dask",
"distributed",
"fsspec",
]
[project.urls]
Homepage = "https://www.hecbiosim.ac.uk"
Repository = "https://github.com/HECBioSim/crossflow"
Documentation = "https://crossflow.readthedocs.io/"
[project.optional-dependencies]
testing = [
"pytest==8.2.2",
"pytest-cov==5.0.0",
"pytest-sugar==1.0.0"
]
pre-commit = [
"pre-commit==3.7.1",
"pylint==3.3.8"
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-contentui",
"sphinxcontrib-details-directive",
"sphinx_copybutton",
"furo",
"markupsafe<2.1"
]
[tool.pylint.messages_control]
disable = []
[tool.pylint.format]
max-line-length = 120
[tool.coverage.run]
# Configuration of [coverage.py](https://coverage.readthedocs.io)
# reporting which lines of your plugin are covered by tests
source=["crossflow"]
[tool.isort]
# Configuration of [isort](https://isort.readthedocs.io)
line_length = 120
force_sort_within_sections = true