-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (53 loc) · 1.45 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
[build-system]
requires = [
"setuptools>=61.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "v2_samplesheet_maker"
version = "4.2.4.post20240508150053"
description = "v2 SampleSheet maker"
readme = "Readme.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"docopt >= 0.6.2, < 1",
"pandas >= 2.1.2, < 3",
"pydantic >= 2.4.2, < 3",
"verboselogs >= 1.7, < 2",
"xmltodict >= 0.12.0, < 1",
]
authors = [
{ name = "Alexis Lucattini", email = "[email protected]" },
]
[project.urls]
Homepage = "https://github.com/umccr/v2-samplesheet-maker"
"Bug Tracker" = "https://github.com/umccr/v2-samplesheet-maker/issues"
[project.scripts]
v2-samplesheet-maker = "v2_samplesheet_maker.run.v2_samplesheet_writer:main"
v2-samplesheet-to-json = "v2_samplesheet_maker.run.v2_samplesheet_reader:main"
run-info-xml-reader = "v2_samplesheet_maker.run.run_info_reader:main"
run-info-xml-writer = "v2_samplesheet_maker.run.run_info_writer:main"
v2-samplesheet-to-run-info-xml = "v2_samplesheet_maker.run.v2_samplesheet_to_run_info_xml:main"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
build = [
"build",
]
deploy = [
"twine",
]
toml = [
"tomli_w >= 1.0.0, < 2",
]
[tool.setuptools]
script-files = [
"scripts/build-samplesheet-and-validate-with-bcl-convert.sh",
]