-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
124 lines (112 loc) · 3 KB
/
pyproject.toml
File metadata and controls
124 lines (112 loc) · 3 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gxformat2"
dynamic = ["version", "dependencies"]
description = "Galaxy Workflow Format 2 Descriptions"
readme = "README.rst"
authors = [
{name = "Galaxy Project and Community", email = "jmchilton@gmail.com"},
]
license = "MIT"
license-files = [
"LICENSE",
]
keywords = ["galaxy"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX",
"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",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Testing",
]
requires-python = ">=3.9"
[project.optional-dependencies]
bioblend = ["bioblend"]
[project.scripts]
gxwf-to-native = "gxformat2.converter:main"
gxwf-to-format2 = "gxformat2.export:main"
gxwf-lint = "gxformat2.lint:main"
gxwf-viz = "gxformat2.cytoscape:main"
gxwf-abstract-export = "gxformat2.abstract:main"
gxwf-mermaid = "gxformat2.mermaid:main"
[project.urls]
Homepage = "https://github.com/galaxyproject/gxformat2"
[dependency-groups]
lint = [
"black",
"flake8",
"flake8-bugbear",
"isort",
"ruff",
]
mypy = [
"mypy",
"types-PyYAML",
"types-requests",
]
test = [
"pytest",
"pydantic>=2.0",
{include-group = "dev"},
]
dev = [
"schema-salad[pycodegen]",
"schema-salad-plus-pydantic>=0.1.8",
"cwltool>=3.0.20200807132242",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"myst-parser",
"sphinx-argparse",
"sphinxcontrib-mermaid",
]
[tool.uv]
default-groups = ["test", "lint", "mypy", "docs"]
[tool.ruff]
exclude = [
"gxformat2/schema/v19_09.py",
"gxformat2/schema/native_v0_1.py",
"gxformat2/schema/gxformat2.py",
"gxformat2/schema/gxformat2_strict.py",
"gxformat2/schema/native.py",
"gxformat2/schema/native_strict.py",
]
[tool.isort]
profile = "black"
line_length = 120
known_first_party = ["gxformat2"]
force_alphabetical_sort_within_sections = true
skip_glob = [
"gxformat2/schema/v19_09.py",
"gxformat2/schema/native_v0_1.py",
"gxformat2/schema/gxformat2.py",
"gxformat2/schema/gxformat2_strict.py",
"gxformat2/schema/native.py",
"gxformat2/schema/native_strict.py",
]
[tool.black]
line-length = 120
extend-exclude = '''
^/gxformat2/schema/(v19_09|native_v0_1|gxformat2|gxformat2_strict|native|native_strict).py
'''
[tool.setuptools.dynamic]
version = {attr = "gxformat2.__version__"}
dependencies = {file = "requirements.txt"}
[tool.setuptools.package-data]
"gxformat2.examples" = ["**/*.yml", "**/*.ga"]
[tool.setuptools.packages.find]
where = ["."]
include = ["gxformat2*"]