-
Notifications
You must be signed in to change notification settings - Fork 54
/
pyproject.toml
75 lines (68 loc) · 1.66 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
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "miniwdl"
dynamic = ["version"]
description = "Workflow Description Language (WDL) local runner & developer toolkit"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "CZI", email = "[email protected]"}
]
urls = { "Homepage" = "https://github.com/chanzuckerberg/miniwdl" }
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Interpreters"
]
dependencies = [
"importlib-metadata>=3.10.1",
"regex>=2020.4.4",
"xdg>=5.0.0",
"docker>=3.4.0",
"PyYAML>=5.4.1,<7",
"argcomplete>=3,<4",
"pygtail~=0.14",
"coloredlogs>=15,<16",
"python-json-logger>=2,<3",
"lark~=1.1",
"bullet>=2,<3",
"psutil>=5,<7"
]
[project.optional-dependencies]
dev = [
"ruff",
"mypy",
"pytest",
"testfixtures",
"pytest-xdist",
"pytest-cov",
"coverage",
"python-coveralls",
"build",
"wheel",
"twine",
"sphinx",
"sphinx-autobuild",
"sphinx_rtd_theme",
"sphinx-argparse",
"recommonmark",
"graphviz",
"boto3"
]
[project.scripts]
miniwdl = "WDL.CLI:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["WDL"]
[tool.setuptools_scm]
write_to = "WDL/_version.py"
[tool.mypy]
mypy_path = "${MYPY_CONFIG_FILE_DIR}/stubs"
[tool.ruff]
exclude = ["WDL/_version.py"]