-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
97 lines (80 loc) · 1.75 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
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "ceci"
description = "Lightweight pipeline engine for LSST DESC"
readme = "README.md"
urls = {homepage = "https://github.com/LSSTDESC/ceci"}
authors =[{name = "Joe Zuntz"}]
license = {text = "BSD 3-Clause License"}
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dynamic = ["version"]
dependencies =[
"pyyaml >= 5.1",
"psutil",
'graphlib_backport ; python_version < "3.9"',
]
[tool.setuptools_scm]
# This activates use_scm_version to get the version number from git tags.
write_to = "ceci/_version.py"
[tool.setuptools]
packages = [
"ceci",
"ceci.sites",
"ceci.tools",
]
[project.scripts]
ceci = "ceci.main:main"
ceci-update-for-version-2 = "ceci.update_pipelines_for_ceci_2:main"
ceci-ancestors = "ceci.tools.ancestors:main"
[project.optional-dependencies]
parsl = [
"parsl >= 1.0.0",
"flask",
]
cwl = [
"cwlref-runner",
"cwl-utils",
]
viz = [
"pygraphviz"
]
dask = [
"dask[distributed] >= 2023.5.0",
"dask_mpi >= 2022.4.0",
]
test = [
"pytest",
"pytest-cov",
"pytest-mock",
"mockmpi",
"h5py",
"dask[distributed]",
]
all = [
"parsl >= 1.0.0",
"flask",
"cwlref-runner",
"cwl-utils",
"pygraphviz",
"pytest",
"pytest-cov",
"pytest-mock",
"mockmpi",
"h5py",
"dask[distributed] >= 2023.5.0",
"dask_mpi >= 2022.4.0",
]