|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=65.5.1"] # PEP 518 specifications |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "wfcommons" |
| 7 | +authors = [{name = "WfCommons team", email = "support@wfcommons.org"}] |
| 8 | +description = "A Framework for Enabling Scientific Workflow Research and Education" |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.8" |
| 11 | +classifiers = [ |
| 12 | + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", |
| 13 | + "Operating System :: OS Independent", |
| 14 | + "Programming Language :: Python :: 3", |
| 15 | + "Programming Language :: Python :: 3.8", |
| 16 | + "Programming Language :: Python :: 3.9", |
| 17 | + "Programming Language :: Python :: 3.10", |
| 18 | + "Programming Language :: Python :: 3.11", |
| 19 | + "Programming Language :: Python :: 3.12", |
| 20 | + "Intended Audience :: Developers", |
| 21 | + "Intended Audience :: Education", |
| 22 | + "Intended Audience :: Science/Research", |
| 23 | + "Natural Language :: English", |
| 24 | + "Topic :: Documentation :: Sphinx", |
| 25 | + "Topic :: System :: Distributed Computing" |
| 26 | +] |
| 27 | +license = {text = "GNU General Public License v3 (GPLv3)"} |
| 28 | +dependencies = [ |
| 29 | + "jsonschema", |
| 30 | + "matplotlib", |
| 31 | + "networkx", |
| 32 | + "numpy", |
| 33 | + "python-dateutil", |
| 34 | + "requests", |
| 35 | + "scipy", |
| 36 | + "pyyaml", |
| 37 | + "pandas", |
| 38 | + "stringcase" |
| 39 | +] |
| 40 | +dynamic = ["version"] |
| 41 | + |
| 42 | +[project.urls] |
| 43 | +Homepage = "https://wfcommons.org" |
| 44 | +Source = "https://github.com/wfcommons/wfcommons" |
| 45 | +Documentation = "https://docs.wfcommons.org" |
| 46 | +Tracker = "https://github.com/wfcommons/WfCommons/issues" |
| 47 | + |
| 48 | +[project.optional-dependencies] |
| 49 | +test = ["pytest", "pytest-cov"] |
| 50 | + |
| 51 | +[tool.setuptools.dynamic] |
| 52 | +version = {attr = "wfcommons.version.__version__"} |
| 53 | + |
| 54 | +[tool.pytest.ini_options] |
| 55 | +addopts=""" |
| 56 | +--cov-context test \ |
| 57 | +--cov-config pyproject.toml \ |
| 58 | +--cov-report xml:coverage.xml \ |
| 59 | +--cov-report term-missing \ |
| 60 | +--cov wfcommons \ |
| 61 | +--cov tests \ |
| 62 | +--ignore wfcommons/wfbench/translator/templates \ |
| 63 | +--no-cov-on-fail \ |
| 64 | +-ra \ |
| 65 | +-W ignore""" |
| 66 | +testpaths = [ |
| 67 | + "tests" |
| 68 | +] |
0 commit comments