-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
70 lines (61 loc) · 1.61 KB
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
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wgsextract"
version = "6.0.0-alpha"
description = "Comprehensive tool for processing whole genome sequencing data"
authors = [
{name = "WGS Extract Team", email = "info@wgse.bio"}
]
readme = "README.md"
license = {text = "GPL-3.0-or-later"}
requires-python = ">=3.13"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"pysam>=0.22.0",
"numpy>=1.26.0",
"pandas>=2.1.0",
"pillow>=10.0.0",
"requests>=2.31.0",
"tqdm>=4.66.0",
"psutil>=5.9.0",
"PyQt6>=6.6.0",
"PyQt6-Charts>=6.6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"mypy>=1.5.0",
"ruff>=0.0.290",
]
[project.scripts]
wgsextract = "wgsextract.__main__:main"
[project.urls]
Homepage = "https://wgse.bio"
Documentation = "https://docs.wgse.bio"
Repository = "https://github.com/wgsextract/wgsextract"
Issues = "https://github.com/wgsextract/wgsextract/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["wgsextract*"]
[tool.black]
line-length = 100
target-version = ['py313']
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true