-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
132 lines (107 loc) · 3.21 KB
/
pyproject.toml
File metadata and controls
132 lines (107 loc) · 3.21 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "MacSyFinder"
authors = [
{name="Sophie Abby", email='sophie.abby@univ-grenoble-alpes.fr'},
{name="Bertrand Neron", email='bneron@pasteur.fr'}
]
maintainers = [
{name="Bertrand Neron", email='bneron@pasteur.fr'}
]
description = 'MacSyFinder: Detection of macromolecular systems in protein datasets using systems modelling and similarity search'
keywords = ['science', 'research', 'bioinformatic', 'microbiology', 'genomic', 'prokaryote', 'functional gene annotation']
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["COPYING"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: POSIX",
"Environment :: Console",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
requires-python = ">=3.10"
dependencies = [
"macsylib"
]
[project.optional-dependencies]
dev = [
"macsylib[dev]",
"sphinx",
"sphinx_rtd_theme",
"sphinx-autodoc-typehints",
"sphinxcontrib-svg2pdfconverter",
"coverage[toml]",
"build",
"ruff",
"pre-commit",
]
model = [
"macsylib[model]"
]
[project.scripts]
macsyfinder = "macsyfinder.scripts.msf:main"
msf_data = "macsyfinder.scripts.macsydata:main"
macsydata = "macsyfinder.scripts.macsydata:deprecated_main"
msf_profile = "macsyfinder.scripts.macsyprofile:main"
macsyprofile = "macsyfinder.scripts.macsyprofile:deprecated_main"
msf_config = "macsyfinder.scripts.macsyconfig:main"
macsyconfig = "macsyfinder.scripts.macsyconfig:deprecated_main"
msf_split = "macsyfinder.scripts.macsy_gembase_split:main"
msf_merge = "macsyfinder.scripts.macsy_merge_results:main"
[project.urls]
Homepage = "https://github.com/gem-pasteur/macsyfinder/"
Documentation = "https://macsyfinder.readthedocs.io/en/latest/"
Repository = "https://github.com/gem-pasteur/macsyfinder/"
Issues = "https://github.com/gem-pasteur/macsyfinder/issues"
Changelog = "https://macsyfinder.readthedocs.io/en/latest/user_guide/new_v2.html#what-s-new-in-macsyfinder-v2"
[tool.setuptools.packages.find]
where=["src"]
include = ["macsyfinder*"]
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "macsyfinder.__version__"}
[tool.coverage.run]
branch = true
source = ["macsyfinder"]
command_line = "-m unittest discover -vv"
[tool.ruff]
target-version = "py310"
# Exclude a variety of commonly ignored directories.
exclude = [
".eggs",
".git",
".ipynb_checkpoints",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".venv",
"__pypackages__",
"_build",
"build",
"dist",
"site-packages",
"venv",
]
# Same as Black.
line-length = 120
indent-width = 4
src = ['src/macsyfinder', 'tests', 'pyproject.toml']
[tool.ruff.format]
indent-style = "space"
[tool.ruff.lint.per-file-ignores]
[tool.pylint]
py-version = 3.11
max-line-length = 120
[tool.pylint.design]
max-args = 10
max-positional-arguments = 8