Skip to content
Snippets Groups Projects
Commit 5a0a6e4e authored by Markus Scheidgen's avatar Markus Scheidgen
Browse files

Merge branch 'pipfix' into 'v0.9.0'

Fixed issue with the Pint data files not ending up in the package installation.

See merge request !186
parents 0f2fa60c c1df9d9a
Branches
Tags
2 merge requests!188V0.9.0,!186Fixed issue with the Pint data files not ending up in the package installation.
Pipeline #83244 passed
recursive-include dependencies/optimade-python-tools *.txt *.g *.py *.ini
recursive-include nomad *.json *.j2 *.md *.yaml
include nomad/units/*.txt
include README.md
include LICENSE.txt
include requirements.txt
......
......@@ -121,6 +121,7 @@ The NOMAD GUI requires static artifacts that are generated from the NOMAD Python
```
nomad dev metainfo > gui/src/metainfo.json
nomad dev searchQuantities > gui/src/searchQuantities.json
nomad dev units > gui/src/units.js
./gitinfo.sh
```
......
......@@ -254,6 +254,7 @@ def setup_kwargs():
install_requires=install_requires,
extras_require=extras_require,
include_package_data=True,
package_data={'nomad': ['units/*.txt']},
python_requires='>=3.6',
entry_points='''
[console_scripts]
......
......@@ -11,3 +11,4 @@ pip install -e .[all]
nomad dev metainfo > gui/src/metainfo.json
nomad dev search-quantities > gui/src/search-quantities.json
nomad dev units > gui/src/units.js
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment