Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
nomad-lab
nomad-FAIR
Commits
c1df9d9a
Commit
c1df9d9a
authored
Sep 29, 2020
by
Lauri Himanen
Committed by
Markus Scheidgen
Sep 29, 2020
Browse files
Fixed issue with the Pint data files not ending up in the package installation.
parent
0f2fa60c
Changes
4
Hide whitespace changes
Inline
Side-by-side
MANIFEST.in
View file @
c1df9d9a
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
include auto_complete_install.sh
include setup.json
\ No newline at end of file
include setup.json
docs/dev/setup.md
View file @
c1df9d9a
...
...
@@ -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
```
...
...
setup.py
View file @
c1df9d9a
...
...
@@ -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]
...
...
setup.sh
View file @
c1df9d9a
...
...
@@ -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
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment