Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
dumux-repositories
dumux
Commits
7de31aa7
Commit
7de31aa7
authored
2 years ago
by
Mathis Kelm
Browse files
Options
Downloads
Patches
Plain Diff
[python] Delete setup scripts
parent
fd1de189
No related branches found
No related tags found
Loading
Checking pipeline status
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
python/CMakeLists.txt
+0
-1
0 additions, 1 deletion
python/CMakeLists.txt
python/setup-python-env.sh
+0
-7
0 additions, 7 deletions
python/setup-python-env.sh
python/setup.py.in
+0
-16
0 additions, 16 deletions
python/setup.py.in
with
0 additions
and
24 deletions
python/CMakeLists.txt
+
0
−
1
View file @
7de31aa7
add_subdirectory
(
dumux
)
add_subdirectory
(
dumux
)
configure_file
(
setup.py.in setup.py
)
# link properties.hh needed by the Python bindings
# link properties.hh needed by the Python bindings
# to determine the list of properties
# to determine the list of properties
...
...
This diff is collapsed.
Click to expand it.
python/setup-python-env.sh
deleted
100755 → 0
+
0
−
7
View file @
fd1de189
#!/bin/bash
# Adds all Python modules found in other Dune modules to the PYTHONPATH
./dune-common/bin/dunecontrol bexec
"echo -n :
\$
(pwd)/python >>
$(
pwd
)
/pythonpath.txt"
export
PYTHONPATH
=
$PYTHONPATH
$(
cat
pythonpath.txt
)
rm
pythonpath.txt
# Sets up the dune-py module for JIT compilation of Python binding code
./dune-common/bin/setup-dunepy.py
--opts
=
cmake.opts
install
This diff is collapsed.
Click to expand it.
python/setup.py.in
deleted
100644 → 0
+
0
−
16
View file @
fd1de189
from setuptools import setup, find_packages
REQUIRED_PACKAGES = '${RequiredPythonModules}'.replace(';',' ').split(' ')
setup(
name="${ProjectName}",
description="${ProjectDescription}",
version="${ProjectVersionString}",
author="${ProjectAuthor}",
author_email="${ProjectMaintainerEmail}",
packages=find_packages(),
zip_safe=0,
package_data={"": ["*.so"], "dumux": ["data/*.cmake"]},
install_requires=REQUIRED_PACKAGES,
include_package_data=True,
)
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