Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nomad-FAIR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nomad-lab
nomad-FAIR
Commits
12887945
Commit
12887945
authored
5 years ago
by
Markus Scheidgen
Browse files
Options
Downloads
Patches
Plain Diff
Fixed missing phonopy in build.
parent
ee3e4e87
No related branches found
No related tags found
2 merge requests
!115
V0.8.0 beta
,
!113
V0.8.0
Pipeline
#72642
failed
5 years ago
Stage: build
Stage: test
Stage: deploy
Stage: release
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MANIFEST.in
+1
-0
1 addition, 0 deletions
MANIFEST.in
setup.py
+8
-0
8 additions, 0 deletions
setup.py
with
9 additions
and
0 deletions
MANIFEST.in
+
1
−
0
View file @
12887945
recursive-include dependencies/optimade-python-tools *.txt *.g *.py *.ini
recursive-include nomad *.json *.j2 *.md *.yaml
include README.md
include LICENSE.txt
include requirements.txt
include auto_complete_install.sh
include setup.json
\ No newline at end of file
This diff is collapsed.
Click to expand it.
setup.py
+
8
−
0
View file @
12887945
...
...
@@ -184,6 +184,14 @@ def compile_dependency_setup_kwargs(paths, **kwargs):
local_install_requires
.
add
(
require
)
all_install_requires
[
name
]
=
local_install_requires
# automatically add parser deps
for
_
,
setup_data
in
results
.
items
():
if
'
parsers
'
in
setup_data
[
'
meta
'
][
'
setup.py
'
]:
parsing
=
kwargs
.
setdefault
(
'
extras_require
'
,
{}).
setdefault
(
'
parsing
'
,
[])
for
require
in
setup_data
[
'
kwargs
'
].
get
(
'
install_requires
'
,
[]):
if
require
not
in
parsing
:
parsing
.
append
(
require
)
def
replace_own_packages
(
requires
):
'''
replaces nomad dependencies with their requirements
'''
for
other
in
all_names
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment