-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
114 lines (102 loc) · 2.49 KB
/
pyproject.toml
File metadata and controls
114 lines (102 loc) · 2.49 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[project]
name = "alleleTools"
version = "0.1.0"
authors = [
{ name="Nicolas Mendoza Mejia", email="mendozamejian@gmail.com" }
]
description = "Analyze HLA and KIR alleles with this set of command-line tools"
readme = "readme.md"
requires-python = ">=3.9"
license-files = ["LICENSE"]
license = "GPL-3.0"
keywords = ["genetics", "bioinformatics"]
dependencies = [
"biopython==1.85",
"matplotlib==3.9.2",
"numpy==1.26.4",
"openpyxl==3.1.5",
"pandas==2.2.3",
"requests==2.32.4",
"chardet==5.1.0",
"yaspin==3.1.0",
"progressbar==2.5",
]
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Development Status :: 2 - Pre-Alpha",
"Operating System :: OS Independent",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov",
"mock==5.2.0",
"black==25.1.0",
"flake8",
"pyright",
"pandas-stubs",
"sphinx==7.3.7",
"sphinx-rtd-theme==3.0.2",
]
test = [
"pytest>=6.0",
"pytest-cov",
"mock==5.2.0",
]
[project.urls]
Homepage = "https://github.com/nmendozam/alleleTools"
Issues = "https://github.com/nmendozam/alleleTools/issues"
Documentation = "https://alleletools.readthedocs.io"
[project.scripts]
altools = "alleleTools.alleleTools:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["alleleTools"]
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = """
--verbose
--tb=short
--strict-markers
--disable-warnings
--cov=alleleTools
--cov-report=html
--cov-report=term-missing
--cov-fail-under=80
"""
markers = """
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests
unit: marks tests as unit tests
requires_network: marks tests that require network access
"""
filterwarnings = """
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
"""
[tool.black]
line-length = 88
target-version = ['py39']
[tool.coverage.report]
omit = [
"**/test_*",
]
[tool.pyright]
include = ["src"]