-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
71 lines (66 loc) · 1.91 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
[build-system]
requires = ["setuptools>=65.5.1"] # PEP 518 specifications
build-backend = "setuptools.build_meta"
[project]
name = "wfcommons"
authors = [{name = "WfCommons team", email = "[email protected]"}]
description = "A Framework for Enabling Scientific Workflow Research and Education"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Documentation :: Sphinx",
"Topic :: System :: Distributed Computing"
]
license = {text = "GNU General Public License v3 (GPLv3)"}
dependencies = [
"jsonschema",
"matplotlib",
"networkx",
"numpy",
"pandas",
"python-dateutil",
"requests",
"scipy",
"pyyaml",
"pandas",
"stringcase"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://wfcommons.org"
Source = "https://github.com/wfcommons/wfcommons"
Documentation = "https://docs.wfcommons.org"
Tracker = "https://github.com/wfcommons/WfCommons/issues"
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
[tool.setuptools.dynamic]
version = {attr = "wfcommons.version.__version__"}
[tool.pytest.ini_options]
addopts="""
--cov-context test \
--cov-config pyproject.toml \
--cov-report xml:coverage.xml \
--cov-report term-missing \
--cov ./wfcommons \
--ignore wfcommons/wfbench/translator/templates \
--no-cov-on-fail \
-ra \
-W ignore"""
testpaths = [
"tests"
]
markers = [
"unit: Mark a test as a unit test"
]