cocluto v1.0.18 - fixed a bug that caused submodules to be excluded from install

eg problem visible with the command:
> /usr/bin/python3 -m pip install --root=/ git+https://git.ipr.univ-rennes.fr/cellinfo/cocluto to

then:
```sh
root@alambix50:~# quman
Traceback (most recent call last):
  File "/usr/local/bin/quman", line 5, in <module>
    from cocluto.quman import main
  File "/usr/local/lib/python3.11/dist-packages/cocluto/quman.py", line 13, in <module>
    from cocluto.ClusterController.QstatParser import QstatParser
```

work related to [https://bugzilla.ipr.univ-rennes.fr/show_bug.cgi?id=3093]
This commit is contained in:
Guillaume Raffy 2026-04-10 10:18:06 +02:00
parent f64e31b420
commit 381ec9f1af
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
__version__ = '1.0.17'
__version__ = '1.0.18'
class Version(object):

View File

@ -25,7 +25,11 @@ quman = "cocluto.quman:main"
Repository = "https://git.ipr.univ-rennes.fr/cellinfo/cocluto"
[tool.setuptools]
packages = ["cocluto"]
packages = [
"cocluto",
"cocluto.ClusterController",
"cocluto.Ipmi",
"cocluto.SunGridEngine",]
[tool.setuptools.dynamic]
version = {attr = "cocluto.version.__version__"}