-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (94 loc) · 2.19 KB
/
Copy pathpyproject.toml
File metadata and controls
105 lines (94 loc) · 2.19 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
[project]
name = "metapang"
license = "CECILL-C"
license-files = ["LICENSE"]
description = "MetaPanG"
readme = "README.md"
dynamic = ['version']
authors = [
{ name = "Téo Lemane", email = "teo.lemane@genoscope.cns.fr" }
]
keywords = ["Pangenomics", "Comparative Genomics", "Bioinformatics", "Prokaryote"]
classifiers = [
"Development Status :: 3 - Alpha",
"Envrionment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
requires-python = ">=3.11"
dependencies = [
"click>=8.1.8",
"loguru>=0.7.3",
"ppanggolin>=2.3.1",
"pyfastx>=2.2.0",
"pygithub>=2.6.1",
"rich>=13.9.4",
"rich-click>=1.8.6",
"semver>=3.0.4",
"sourmash>=4.9.4",
"tables>=3.10.1",
"msgspec>=0.19.0",
"tomli-w>=1.2.0",
"jsonschema>=4.24.0",
"gb-io>=0.3.6",
"httpx>=0.28.1",
"scipy>=1.15.3",
"numpy>=1.26.0",
"pandas>=2.2.0",
]
[project.scripts]
metapang = "metapang.__main__:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"metapang",
"metapang.core",
"metapang.core.index",
"metapang.core.profile",
"metapang.pg",
"metapang.app",
"metapang.app.tools",
"metapang.app.index",
"metapang.app.configure",
"metapang.app.search",
"metapang.app.profile",
"metapang.report",
"metapang.utils",
]
[tool.setuptools.dynamic]
version = { attr = "metapang.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["-v", "--tb=short", "--import-mode=importlib"]
enable_assertion_pass_hook = true
markers = [
"integration: end-to-end tests",
]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "W", "I", "UP", "B"]
ignore = ["UP042"]
[tool.pyright]
include = ["metapang"]
pythonVersion = "3.11"
typeCheckingMode = "basic"
[dependency-groups]
dev = [
"pre-commit>=4.1.0",
"ruff>=0.16",
"pytest",
"ipython",
"viztracer>=1.1.1",
]
doc = [
"sphinx>=8.1.3",
"furo>=2024.8.6",
"myst-parser>=4.0.1",
"sphinx-copybutton>=0.5.2",
]