gismap 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. gismap-0.1.0/.coveragerc +5 -0
  2. gismap-0.1.0/.editorconfig +21 -0
  3. gismap-0.1.0/.github/ISSUE_TEMPLATE.md +15 -0
  4. gismap-0.1.0/.github/workflows/build.yml +48 -0
  5. gismap-0.1.0/.github/workflows/docs.yml +49 -0
  6. gismap-0.1.0/.github/workflows/release.yml +29 -0
  7. gismap-0.1.0/.gitignore +109 -0
  8. gismap-0.1.0/.run/All tests.run.xml +24 -0
  9. gismap-0.1.0/.run/Generate docs.run.xml +20 -0
  10. gismap-0.1.0/AUTHORS.md +9 -0
  11. gismap-0.1.0/CONTRIBUTING.md +101 -0
  12. gismap-0.1.0/HISTORY.md +15 -0
  13. gismap-0.1.0/PKG-INFO +62 -0
  14. gismap-0.1.0/README.md +47 -0
  15. gismap-0.1.0/citation.cff +15 -0
  16. gismap-0.1.0/docs/conf.py +215 -0
  17. gismap-0.1.0/docs/favicon.ico +0 -0
  18. gismap-0.1.0/docs/index.md +17 -0
  19. gismap-0.1.0/docs/logo.png +0 -0
  20. gismap-0.1.0/docs/presentation/authors.md +2 -0
  21. gismap-0.1.0/docs/presentation/contributing.md +2 -0
  22. gismap-0.1.0/docs/presentation/history.md +2 -0
  23. gismap-0.1.0/docs/presentation/index.md +10 -0
  24. gismap-0.1.0/docs/presentation/installation.md +48 -0
  25. gismap-0.1.0/docs/presentation/readme.md +2 -0
  26. gismap-0.1.0/docs/reference/database.md +41 -0
  27. gismap-0.1.0/docs/reference/gismo.md +13 -0
  28. gismap-0.1.0/docs/reference/index.md +8 -0
  29. gismap-0.1.0/docs/reference/lab.md +38 -0
  30. gismap-0.1.0/docs/reference/utils.md +39 -0
  31. gismap-0.1.0/docs/tutorials/index.md +5 -0
  32. gismap-0.1.0/docs/tutorials/lab_tutorial.ipynb +800 -0
  33. gismap-0.1.0/gismap/__init__.py +20 -0
  34. gismap-0.1.0/gismap/author.py +0 -0
  35. gismap-0.1.0/gismap/gismap.py +1 -0
  36. gismap-0.1.0/gismap/gismo.py +379 -0
  37. gismap-0.1.0/gismap/lab/__init__.py +10 -0
  38. gismap-0.1.0/gismap/lab/graph.py +234 -0
  39. gismap-0.1.0/gismap/lab/lab.py +152 -0
  40. gismap-0.1.0/gismap/lab/lip6.py +43 -0
  41. gismap-0.1.0/gismap/lab/toulouse.py +47 -0
  42. gismap-0.1.0/gismap/lab/vis.py +171 -0
  43. gismap-0.1.0/gismap/search.py +215 -0
  44. gismap-0.1.0/gismap/sources/__init__.py +0 -0
  45. gismap-0.1.0/gismap/sources/dblp.py +162 -0
  46. gismap-0.1.0/gismap/sources/hal.py +272 -0
  47. gismap-0.1.0/gismap/sources/models.py +31 -0
  48. gismap-0.1.0/gismap/sources/multi.py +135 -0
  49. gismap-0.1.0/gismap/utils/__init__.py +0 -0
  50. gismap-0.1.0/gismap/utils/common.py +60 -0
  51. gismap-0.1.0/gismap/utils/logger.py +4 -0
  52. gismap-0.1.0/gismap/utils/requests.py +33 -0
  53. gismap-0.1.0/gismap/utils/text.py +93 -0
  54. gismap-0.1.0/pyproject.toml +51 -0
  55. gismap-0.1.0/tests/__init__.py +1 -0
  56. gismap-0.1.0/tests/test_gismap.py +21 -0
  57. gismap-0.1.0/uv.lock +1954 -0
@@ -0,0 +1,5 @@
1
+ [report]
2
+ exclude_lines =
3
+ pragma: no cover
4
+ raise NotImplementedError
5
+ if __name__ == '__main__':
@@ -0,0 +1,21 @@
1
+ # http://editorconfig.org
2
+
3
+ root = true
4
+
5
+ [*]
6
+ indent_style = space
7
+ indent_size = 4
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
10
+ charset = utf-8
11
+ end_of_line = lf
12
+
13
+ [*.bat]
14
+ indent_style = tab
15
+ end_of_line = crlf
16
+
17
+ [LICENSE]
18
+ insert_final_newline = false
19
+
20
+ [Makefile]
21
+ indent_style = tab
@@ -0,0 +1,15 @@
1
+ * Generic Information Search: Mapping and Analysis of Publications version:
2
+ * Python version:
3
+ * Operating System:
4
+
5
+ ### Description
6
+
7
+ Describe what you were trying to get done.
8
+ Tell us what happened, what went wrong, and what you expected to happen.
9
+
10
+ ### What I Did
11
+
12
+ ```
13
+ Paste the command(s) you ran and the output.
14
+ If there was a crash, please include the traceback here.
15
+ ```
@@ -0,0 +1,48 @@
1
+ # This workflow will install the package with UV,
2
+ # run the tests on multiple Python versions,
3
+ # and upload the results on codecov.
4
+ name: build
5
+
6
+ on:
7
+ push:
8
+ branches:
9
+ - main
10
+ pull_request:
11
+ types: [opened, synchronize, reopened]
12
+ schedule:
13
+ - cron: '30 5 1,15 * *'
14
+ env:
15
+ NUMBA_DISABLE_JIT: 1
16
+
17
+ jobs:
18
+ build:
19
+ runs-on: ubuntu-latest
20
+ strategy:
21
+ matrix:
22
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
23
+ steps:
24
+
25
+ - name: Checkout
26
+ uses: actions/checkout@v4
27
+
28
+ - name: Set up Python ${{ matrix.python-version }}
29
+ uses: actions/setup-python@v5
30
+ with:
31
+ python-version: ${{ matrix.python-version }}
32
+
33
+ - name: Set up uv
34
+ uses: astral-sh/setup-uv@v5
35
+ with:
36
+ version: "0.7.2"
37
+
38
+ - name: Run tests
39
+ run: |
40
+ uv sync --all-extras
41
+ uv run pytest
42
+
43
+ - name: Upload coverage reports to Codecov with GitHub Action on Python 3.12
44
+ uses: codecov/codecov-action@v4
45
+ if: ${{ matrix.python-version == '3.12' }}
46
+ with:
47
+ file: ./coverage.xml
48
+ token: ${{ secrets.CODECOV_TOKEN }} # required
@@ -0,0 +1,49 @@
1
+ # This workflow will generate the docs on each push,
2
+ # and publish them on GitHub Pages if the branch is the main one.
3
+ # To avoid size explosion, only the current version of pages is kept.
4
+
5
+ name: docs
6
+
7
+ on:
8
+ push:
9
+ branches:
10
+ - main
11
+
12
+ jobs:
13
+ build-and-deploy:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
+ with:
20
+ persist-credentials: false
21
+
22
+ - name: Set up Python
23
+ uses: actions/setup-python@v5
24
+ with:
25
+ python-version: '3.12'
26
+
27
+ - name: Set up uv
28
+ uses: astral-sh/setup-uv@v5
29
+ with:
30
+ version: "0.7.13"
31
+
32
+ - name: Setup Pandoc
33
+ uses: pandoc/actions/setup@v1
34
+ with:
35
+ version: '3.6.3'
36
+
37
+ - name: Build Sphinx documentation
38
+ run: |
39
+ uv sync --all-extras
40
+ uv run sphinx-build -a -E -b html docs build
41
+
42
+ - name: Deploy Sphinx documentation on Github Pages
43
+ uses: JamesIves/github-pages-deploy-action@v4
44
+ if: github.ref == 'refs/heads/main'
45
+ with:
46
+ token: ${{ secrets.GITHUB_TOKEN }}
47
+ branch: gh-pages
48
+ folder: build/
49
+ single-commit: true
@@ -0,0 +1,29 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ publish:
9
+ name: Publish Python Package
10
+ runs-on: ubuntu-latest
11
+ environment:
12
+ name: pypi
13
+ permissions:
14
+ id-token: write # Required for PyPI trusted publishing
15
+
16
+ steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v4
19
+
20
+ - name: Install uv
21
+ uses: astral-sh/setup-uv@v5
22
+ with:
23
+ version: "0.7.2" # Pin to specific uv version
24
+
25
+ - name: Build package
26
+ run: uv build --no-sources # Recommended for production builds
27
+
28
+ - name: Publish to PyPI
29
+ run: uv publish -v dist/*
@@ -0,0 +1,109 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ env/
12
+ build/
13
+ develop-eggs/
14
+ dist/
15
+ downloads/
16
+ eggs/
17
+ .eggs/
18
+ lib/
19
+ lib64/
20
+ parts/
21
+ sdist/
22
+ var/
23
+ wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+
28
+ # PyInstaller
29
+ # Usually these files are written by a python script from a template
30
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
31
+ *.manifest
32
+ *.spec
33
+
34
+ # Installer logs
35
+ pip-log.txt
36
+ pip-delete-this-directory.txt
37
+
38
+ # Unit test / coverage reports
39
+ htmlcov/
40
+ .tox/
41
+ .coverage
42
+ .coverage.*
43
+ .cache
44
+ nosetests.xml
45
+ coverage.xml
46
+ *.cover
47
+ .hypothesis/
48
+ .pytest_cache/
49
+
50
+ # Translations
51
+ *.mo
52
+ *.pot
53
+
54
+ # Django stuff:
55
+ *.log
56
+ local_settings.py
57
+
58
+ # Flask stuff:
59
+ instance/
60
+ .webassets-cache
61
+
62
+ # Scrapy stuff:
63
+ .scrapy
64
+
65
+ # Sphinx documentation
66
+ docs/_build/
67
+
68
+ # PyBuilder
69
+ target/
70
+
71
+ # Jupyter Notebook
72
+ .ipynb_checkpoints
73
+
74
+ # pyenv
75
+ .python-version
76
+
77
+ # celery beat schedule file
78
+ celerybeat-schedule
79
+
80
+ # SageMath parsed files
81
+ *.sage.py
82
+
83
+ # dotenv
84
+ .env
85
+
86
+ # virtualenv
87
+ .venv
88
+ venv/
89
+ ENV/
90
+
91
+ # Spyder project settings
92
+ .spyderproject
93
+ .spyproject
94
+
95
+ # Rope project settings
96
+ .ropeproject
97
+
98
+ # mkdocs documentation
99
+ /site
100
+
101
+ # mypy
102
+ .mypy_cache/
103
+
104
+ # IDE settings
105
+ .vscode/
106
+
107
+ # PyCharm project settings
108
+ .idea
109
+ /sandbox/
@@ -0,0 +1,24 @@
1
+ <component name="ProjectRunConfigurationManager">
2
+ <configuration default="false" name="All tests" type="tests" factoryName="py.test">
3
+ <module name="gismap" />
4
+ <option name="ENV_FILES" value="" />
5
+ <option name="INTERPRETER_OPTIONS" value="" />
6
+ <option name="PARENT_ENVS" value="true" />
7
+ <envs>
8
+ <env name="NUMBA_DISABLE_JIT" value="1" />
9
+ </envs>
10
+ <option name="SDK_HOME" value="" />
11
+ <option name="SDK_NAME" value="Python 3.12 (gismap)" />
12
+ <option name="WORKING_DIRECTORY" value="" />
13
+ <option name="IS_MODULE_SDK" value="false" />
14
+ <option name="ADD_CONTENT_ROOTS" value="true" />
15
+ <option name="ADD_SOURCE_ROOTS" value="true" />
16
+ <EXTENSION ID="PythonCoverageRunConfigurationExtension" runner="coverage.py" />
17
+ <option name="_new_keywords" value="&quot;&quot;" />
18
+ <option name="_new_parameters" value="&quot;&quot;" />
19
+ <option name="_new_additionalArguments" value="&quot;&quot;" />
20
+ <option name="_new_target" value="&quot;&quot;" />
21
+ <option name="_new_targetType" value="&quot;PATH&quot;" />
22
+ <method v="2" />
23
+ </configuration>
24
+ </component>
@@ -0,0 +1,20 @@
1
+ <component name="ProjectRunConfigurationManager">
2
+ <configuration default="false" name="Build docs " type="docs" factoryName="Sphinx task">
3
+ <module name="gismap" />
4
+ <option name="ENV_FILES" value="" />
5
+ <option name="INTERPRETER_OPTIONS" value="" />
6
+ <option name="PARENT_ENVS" value="true" />
7
+ <option name="SDK_HOME" value="$PROJECT_DIR$/.venv/Scripts/python.exe" />
8
+ <option name="SDK_NAME" value="Python 3.12 (gismap)" />
9
+ <option name="WORKING_DIRECTORY" value="" />
10
+ <option name="IS_MODULE_SDK" value="false" />
11
+ <option name="ADD_CONTENT_ROOTS" value="true" />
12
+ <option name="ADD_SOURCE_ROOTS" value="true" />
13
+ <option name="docutils_input_file" value="$PROJECT_DIR$/docs" />
14
+ <option name="docutils_output_file" value="$PROJECT_DIR$/build" />
15
+ <option name="docutils_params" value="" />
16
+ <option name="docutils_task" value="html" />
17
+ <option name="docutils_open_in_browser" value="true" />
18
+ <method v="2" />
19
+ </configuration>
20
+ </component>
@@ -0,0 +1,9 @@
1
+ # Credits
2
+
3
+ ## Development Lead
4
+
5
+ - Fabien Mathieu <fabien.mathieu@normalesup.org>
6
+
7
+ ## Contributors
8
+
9
+ None yet. Why not be the first?
@@ -0,0 +1,101 @@
1
+ # Contributing
2
+
3
+ Contributions are welcome, and they are greatly appreciated! Every little bit
4
+ helps, and credit will always be given.
5
+
6
+ You can contribute in many ways:
7
+
8
+ ## Types of Contributions
9
+
10
+ ### Report Bugs
11
+
12
+ Report bugs at https://github.com/balouf/gismap/issues.
13
+
14
+ If you are reporting a bug, please include:
15
+
16
+ - Your operating system name and version.
17
+ - Any details about your local setup that might be helpful in troubleshooting.
18
+ - Detailed steps to reproduce the bug.
19
+
20
+ ### Fix Bugs
21
+
22
+ Look through the GitHub issues for bugs. Anything tagged with "bug" and "help
23
+ wanted" is open to whoever wants to implement it.
24
+
25
+ ### Implement Features
26
+
27
+ Look through the GitHub issues for features. Anything tagged with "enhancement"
28
+ and "help wanted" is open to whoever wants to implement it.
29
+
30
+ ### Write Documentation
31
+
32
+ Generic Information Search: Mapping and Analysis of Publications could always use more documentation, whether as part of the
33
+ official Generic Information Search: Mapping and Analysis of Publications docs, in docstrings, or even on the web in blog posts,
34
+ articles, and such.
35
+
36
+ ### Submit Feedback
37
+
38
+ The best way to send feedback is to file an issue at https://github.com/balouf/gismap/issues.
39
+
40
+ If you are proposing a feature:
41
+
42
+ - Explain in detail how it would work.
43
+ - Keep the scope as narrow as possible, to make it easier to implement.
44
+ - Remember that this is a volunteer-driven project, and that contributions
45
+ are welcome :)
46
+
47
+ ## Get Started!
48
+
49
+ Ready to contribute? Here's how to set up `gismap` for local development.
50
+
51
+ 1. Fork the `gismap` repo on GitHub.
52
+
53
+ 2. Clone your fork locally::
54
+ ```console
55
+ $ git clone git@github.com:your_name_here/gismap.git
56
+ ```
57
+
58
+ 3. Install your local copy into a virtualenv. Assuming you have uv installed, this is how you set up your fork for local development:
59
+ ```console
60
+ $ cd gismap/
61
+ $ uv sync --all-extras
62
+ ```
63
+
64
+ 4. Create a branch for local development::
65
+ ```console
66
+ $ git checkout -b name-of-your-bugfix-or-feature
67
+ ```
68
+ Now you can make your changes locally.
69
+
70
+ 5. When you're done making changes, check that your changes pass the
71
+ tests:
72
+ ```console
73
+ $ uv run pytest
74
+ ```
75
+
76
+ 6. Commit your changes and push your branch to GitHub::
77
+ ```bash
78
+ $ git add .
79
+ $ git commit -m "Your detailed description of your changes."
80
+ $ git push origin name-of-your-bugfix-or-feature
81
+ ```
82
+
83
+ 7. Submit a pull request through the GitHub website.
84
+
85
+ ## Pull Request Guidelines
86
+
87
+ Before you submit a pull request, check that it meets these guidelines:
88
+
89
+ 1. The pull request should include tests.
90
+ 2. If the pull request adds functionality, the docs should be updated. Put
91
+ your new functionality into a function with a docstring, and add the
92
+ feature to the list in `README.md` or `HISTORY.md`.
93
+ 3. The pull request should work for Python for the versions supported by the package (ideally, the three latest minor CPython versions).
94
+ Make sure that the tests pass for all supported Python versions.
95
+
96
+ ## Tips
97
+
98
+ To run a subset of tests:
99
+ ```bash
100
+ $ uv run pytest tests.test_gismap
101
+ ```
@@ -0,0 +1,15 @@
1
+ # History
2
+
3
+ ## Roadmap
4
+
5
+ - Offline DBLP
6
+ - Customized collaboration graphs
7
+ - Colors and size
8
+ - Groups
9
+
10
+ ## 0.1.0 (2025-07-24): First release
11
+
12
+ - First release on PyPI.
13
+ - Online DBLP and HAL DB implemented
14
+ - Lab stuctures implemented
15
+ - Early version of collaboration graph available
gismap-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,62 @@
1
+ Metadata-Version: 2.4
2
+ Name: gismap
3
+ Version: 0.1.0
4
+ Summary: GISMAP leverages DBLP and HAL databases to provide cartography tools for you and your lab.
5
+ Project-URL: Repository, https://github.com/balouf/gismap
6
+ Project-URL: Documentation, https://balouf.github.io/gismap
7
+ Author-email: Fabien Mathieu <fabien.mathieu@normalesup.org>
8
+ Maintainer-email: Fabien Mathieu <fabien.mathieu@normalesup.org>
9
+ License-Expression: MIT
10
+ License-File: AUTHORS.md
11
+ Requires-Python: >=3.10
12
+ Requires-Dist: bof>=0.3.5
13
+ Requires-Dist: gismo>=0.5.2
14
+ Description-Content-Type: text/markdown
15
+
16
+ # Generic Information Search: Mapping and Analysis of Publications
17
+
18
+
19
+ [![PyPI Status](https://img.shields.io/pypi/v/gismap.svg)](https://pypi.python.org/pypi/gismap)
20
+ [![Build Status](https://github.com/balouf/gismap/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/balouf/gismap/actions?query=workflow%3Abuild)
21
+ [![Documentation Status](https://github.com/balouf/gismap/actions/workflows/docs.yml/badge.svg?branch=main)](https://github.com/balouf/gismap/actions?query=workflow%3Adocs)
22
+ [![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
23
+ [![Code Coverage](https://codecov.io/gh/balouf/gismap/branch/main/graphs/badge.svg)](https://codecov.io/gh/balouf/gismap/tree/main)
24
+
25
+ GISMAP leverages DBLP and HAL databases to provide cartography tools for you and your lab.
26
+
27
+ - Free software: MIT
28
+ - Documentation: <https://balouf.github.io/gismap/>.
29
+ - Github: <https://github.com/balouf/gismap>
30
+
31
+ ## Features
32
+
33
+ - Can be used by all researchers in Computer Science (DBLP endpoint) or based in France (HAL endpoint).
34
+ - Aggregate publications from multiple databases, including multiple author keys inside the same database.
35
+ - Automatically keeps track of a Lab/Department members and publications.
36
+ - Builds interactive collaboration graphs.
37
+
38
+ ## Quickstart
39
+
40
+ Install GISMAP:
41
+
42
+ ```console
43
+ $ pip install gismap
44
+ ```
45
+
46
+ Use GISMAP to produce a collaboration graph (HTML):
47
+
48
+ ```pycon
49
+ >>> from gismap.sources.hal import HAL
50
+ >>> from gismap.lab import ListLab, lab2graph
51
+ >>> lab = ListLab(["Mathilde Labbé", "Anne Reverseau", "David Martens", "Marcela Scibiorska", "Nathalie Grande"], dbs=[HAL])
52
+ >>> lab.update_authors()
53
+ >>> lab.update_publis()
54
+ >>> collabs = lab2graph(lab)
55
+ ```
56
+
57
+ ## Credits
58
+
59
+ This package was created with [Cookiecutter][CC] and the [Package Helper 3][PH3] project template.
60
+
61
+ [CC]: <https://github.com/audreyr/cookiecutter>
62
+ [PH3]: <https://balouf.github.io/package-helper-3/>
gismap-0.1.0/README.md ADDED
@@ -0,0 +1,47 @@
1
+ # Generic Information Search: Mapping and Analysis of Publications
2
+
3
+
4
+ [![PyPI Status](https://img.shields.io/pypi/v/gismap.svg)](https://pypi.python.org/pypi/gismap)
5
+ [![Build Status](https://github.com/balouf/gismap/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/balouf/gismap/actions?query=workflow%3Abuild)
6
+ [![Documentation Status](https://github.com/balouf/gismap/actions/workflows/docs.yml/badge.svg?branch=main)](https://github.com/balouf/gismap/actions?query=workflow%3Adocs)
7
+ [![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8
+ [![Code Coverage](https://codecov.io/gh/balouf/gismap/branch/main/graphs/badge.svg)](https://codecov.io/gh/balouf/gismap/tree/main)
9
+
10
+ GISMAP leverages DBLP and HAL databases to provide cartography tools for you and your lab.
11
+
12
+ - Free software: MIT
13
+ - Documentation: <https://balouf.github.io/gismap/>.
14
+ - Github: <https://github.com/balouf/gismap>
15
+
16
+ ## Features
17
+
18
+ - Can be used by all researchers in Computer Science (DBLP endpoint) or based in France (HAL endpoint).
19
+ - Aggregate publications from multiple databases, including multiple author keys inside the same database.
20
+ - Automatically keeps track of a Lab/Department members and publications.
21
+ - Builds interactive collaboration graphs.
22
+
23
+ ## Quickstart
24
+
25
+ Install GISMAP:
26
+
27
+ ```console
28
+ $ pip install gismap
29
+ ```
30
+
31
+ Use GISMAP to produce a collaboration graph (HTML):
32
+
33
+ ```pycon
34
+ >>> from gismap.sources.hal import HAL
35
+ >>> from gismap.lab import ListLab, lab2graph
36
+ >>> lab = ListLab(["Mathilde Labbé", "Anne Reverseau", "David Martens", "Marcela Scibiorska", "Nathalie Grande"], dbs=[HAL])
37
+ >>> lab.update_authors()
38
+ >>> lab.update_publis()
39
+ >>> collabs = lab2graph(lab)
40
+ ```
41
+
42
+ ## Credits
43
+
44
+ This package was created with [Cookiecutter][CC] and the [Package Helper 3][PH3] project template.
45
+
46
+ [CC]: <https://github.com/audreyr/cookiecutter>
47
+ [PH3]: <https://balouf.github.io/package-helper-3/>
@@ -0,0 +1,15 @@
1
+
2
+ cff-version: 1.2.0
3
+ title: Generic Information Search: Mapping and Analysis of Publications
4
+ message: >-
5
+ If you use this software, please cite it using the
6
+ metadata from this file.
7
+ type: software
8
+ authors:
9
+ - family-names: Mathieu
10
+ given-names: Fabien
11
+ email: fabien.mathieu@normalesup.org
12
+ repository-code: "https://github.com/balouf/gismap/"
13
+ url: "https://balouf.github.io/gismap/"
14
+ abstract: GISMAP leverages DBLP and HAL databases to provide cartography tools for you and your lab.
15
+ license: MIT