-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (43 loc) · 1011 Bytes
/
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "nftest"
dynamic = ["version"]
description = "CLI testing tool for Nextflow"
readme = "README.md"
authors = [
{ name = "Chenghao Zhu", email = "[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent"
]
requires-python = ">=3.8"
dependencies = [
"PyYAML",
"python-dotenv",
"pytest",
"mock"
]
[project.optional-dependencies]
dev = ["pytest", "mock"]
[project.scripts]
nftest = "nftest.__main__:main"
[tool.hatch.metadata]
package-data = { "nftest" = ["data/*"] }
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "nftest/_version.py"
[tool.tox]
legacy_tox_ini = """
[tox]
env_list =
py3.8
py3.12
[testenv]
deps = pytest
commands = pytest test --doctest-modules --junitxml=junit/test-results.xml
"""