-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (48 loc) · 1.62 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
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "sequana-hic"
version = "0.0.1"
description = "Hi-C analysis, snakemake, sequana, container, reproducibility"
authors = [{name="Sequana Team", email="thomas.cokelaer@pasteur.fr"}]
license = "BSD-3"
repository = "https://github.com/sequana/hic"
readme = "README.rst"
keywords = ['Hi-C analysis, snakemake, sequana, container, reproducibility']
classifiers = [
"Development Status :: 4 - Beta",
#"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 :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
]
requires-python = ">=3.9,<4.0"
dependencies = [
"sequana >=0.17.0",
"sequana_pipetools >=1.0.0",
"click-completion >=0.5.2",
"cooler >=0.10.3",
"pdfkit (>=1.0.0,<2.0.0)"
]
[tool.poetry]
packages = [
{include = "sequana_pipelines"}
]
[project.scripts]
sequana_hic = "sequana_pipelines.hic.main:main"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
pytest = "^7.4.0"
mock = "^5.1.0"
pytest-mock = "^3.11.1"
pytest-cov = "^4.1.0"