-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (75 loc) · 2.16 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (75 loc) · 2.16 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
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "model-ensembler"
dynamic = ["version"]
authors = [
{name = "James Byrne", email = "jambyr@bas.ac.uk"},
]
maintainers = [
{name = "James Byrne", email = "jambyr@bas.ac.uk"},
{name = "Thomas Zwagerman", email = "thozwa@bas.ac.uk"}
]
description = "Model Ensembler for managed batch workflows"
keywords = ["slurm", "hpc", "tools", "batch", "model", "ensemble", "local"]
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Operating System :: POSIX",
"Development Status :: 3 - Alpha",
"Topic :: System :: Distributed Computing",
]
requires-python = ">=3.7"
dependencies = [
"jinja2",
"jsonschema",
"pyyaml",
]
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov",
"pytest-asyncio",
]
lint = [
"flake8"
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-autoapi",
"mkdocs-authors-plugin",
]
[project.urls]
"Homepage" = "https://www.github.com/jimcircadian/model-ensembler"
"Bug Tracker" = "https://www.github.com/jimcircadian/model-ensembler/issues"
"Change Log" = "https://github.com/environmental-forecasting/model-ensembler/blob/main/CHANGELOG.md"
[project.scripts]
model_ensemble = "model_ensembler.cli:main"
model_ensemble_check = "model_ensembler.cli:check"
model_ensemble_init = "model_ensembler.cli:init"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["model_ensembler*"]
exclude = ["model_ensembler.tests*"]
[tool.setuptools.dynamic]
version = {attr = "model_ensembler.__version__"}
[tool.flake8]
exclude = "docs/"
[tool.distutils.bdist_wheel]
universal = true