-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 844 Bytes
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 844 Bytes
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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "samovar"
version = "0.9.0"
description = "Automated re-profiling and benchmarking with SamovaR"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.md"}
authors = [
{name = "Smutin Daniil", email = "dvsmutin@gmail.com"}
]
dependencies = [
"numpy>=1.20.0",
"pandas>=1.3.0",
"requests>=2.25.0",
"ete3>=3.1.3",
"insilicoseq>2.0.0",
"scikit-learn>1.6.0",
"matplotlib>3.5.0",
"pyyaml>=5.1",
"tqdm>=4.60.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=22.0",
"isort>=5.0",
"flake8>=4.0"
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --cov=src"