-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.89 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
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "sequana_pipetools"
version = "1.2.0"
description = "A set of tools to help building or using Sequana pipelines"
authors = [{name="Sequana Team", email="[email protected]"}]
license = "BSD-3"
repository = "https://github.com/sequana/sequana_pipetools"
readme = "README.rst"
keywords = ["snakemake", "sequana", "pipelines"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
]
packages = [
{ include = "sequana_pipetools" }
]
requires-python = ">=3.8,<4.0"
dependencies = [
"easydev >=0.12",
"parse >=1.19.0",
"ruamel.yaml >=0.18.5",
"packaging >=23.1",
"pykwalify >=1.8",
"importlib_resources >=5.4.0",
"pyyaml >=1.3",
"aiohttp >=3.8.4",
"tqdm >=4.65",
"charset-normalizer >=2",
"rich-click >=1.7.1",
"cookiecutter >=2.6.0",
"docutils (>0.20,!=0.21)",
"versionix (>=0.99.2,<0.100.0)"
]
[project.scripts]
sequana_pipetools = "sequana_pipetools.scripts.main:main"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
pytest = "^8.0.0"
mock = "^5.1.0"
pytest-mock = "^3.11.1"
sequana-rnaseq = "^0.18.0"
sequana-fastqc = "^1.5.0"
pytest-cov = "^4.1.0"