forked from b97pla/snpseq_metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["snpseq_metadata*"]
[tool.setuptools]
script-files = [
"validate-unit.sh",
"snpseq_metadata/scripts/generate_python_models.sh"
]
[project]
name = "snpseq_metadata"
version = "2.2.0"
authors = [
{name = "SNP&SEQ Technology Platform, Uppsala University", email = "[email protected]" },
]
keywords = ["bioinformatics"]
description = "Module that is used to extract run and experiment metadata and export in various formats"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
dependencies = [
"xsdata[cli,lxml,soap]",
"click"
]
[project.optional-dependencies]
test = [
"xmlschema",
"pytest"
]
[project.scripts]
snpseq_metadata = "snpseq_metadata.scripts.metadata:entry_point"
[project.urls]
homepage = "https://github.com/Molmed/snpseq_metadata"