File tree Expand file tree Collapse file tree 3 files changed +16
-9
lines changed
Expand file tree Collapse file tree 3 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 2929 - name : Build documentation
3030 # Build the documentation, you can use this command locally
3131 run : |
32- cd docs/source
33- python -m sphinx -T -W --keep-going -b html -d _build/doctrees -D language=en . docs/html
32+ python -m sphinx -T -W --keep-going -b html -d docs/source/_build/doctrees -D language=en docs/source/ docs/source/docs/html
Original file line number Diff line number Diff line change 88#
99import os
1010import sys
11+ sys .path .insert (0 , os .path .abspath ('src' ))
1112sys .path .insert (0 , os .path .abspath ('../../src' ))
12- sys .path .insert (0 , os .path .abspath ('../.. ' ))
13+ sys .path .insert (0 , os .path .abspath ('.' ))
1314sys .setrecursionlimit (1500 )
1415
16+ import datasets_block
17+ print ("DEBUG datasets_block imported from:" , datasets_block .__file__ )
18+ print ("DEBUG datasets_block.datasets_manager.DatasetManager imported from:" , datasets_block .datasets_manager .DatasetManager .__file__ )
19+
20+
1521# -- Project information
1622
1723project = 'GNN-AID'
Original file line number Diff line number Diff line change 11[build-system ]
2- requires = [" flit_core >=3.2,<4 " ]
3- build-backend = " flit_core.buildapi "
2+ requires = [" setuptools>=61.0 " ]
3+ build-backend = " setuptools.build_meta "
44
55[project ]
6- name = " src "
6+ name = " GNN-AID "
77authors = [
88 {name = " Mikhail Drobyshevskiy" , email = " drobyshevsky@ispras.ru" },
99 {name = " Kirill Lukyanov" , email = " lukyanov.k@ispras.ru" }, ]
10- dynamic = [" description" ]
1110version = " 0.0.1"
1211
13- [tool .setuptools .dynamic ]
14- # version = {file = "VERSION"}
12+ [tool .setuptools ]
13+ package-dir = {"" = " src" }
14+
15+ [tool .setuptools .packages .find ]
16+ where = [" src" ]
You can’t perform that action at this time.
0 commit comments