-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.67 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "streamflow-lsf"
authors = [
{name = "Iacopo Colonnelli", email = "[email protected]"},
{name = "Alberto Mulone", email = "[email protected]"}
]
description = "StreamFlow LSF plugin"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "LGPL-3.0-or-later"}
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Intended Audience :: Science/Research",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Scientific/Engineering",
"Topic :: System :: Distributed Computing",
]
dynamic = ["dependencies", "version"]
[project.urls]
Repository = "https://github.com/alpha-unito/streamflow-lsf"
[project.entry-points]
"unito.streamflow.plugin" = {"unito.lsf" = "streamflow_lsf.plugin:LSFStreamFlowPlugin"}
[tool.setuptools]
packages = [
"streamflow_lsf"
]
zip-safe = true
[tool.setuptools.package-data]
"streamflow_lsf" = ["schemas/*.json"]
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
version = {attr = "streamflow_lsf.version.VERSION"}
[tool.setuptools.dynamic.optional-dependencies]
bandit = {file = "bandit-requirements.txt"}
lint = {file = "lint-requirements.txt"}
test = {file = "test-requirements.txt"}