Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dune-alugrid
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Service Desk
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
extensions
dune-alugrid
Commits
b208c091
Commit
b208c091
authored
Nov 25, 2020
by
Samuel Burbulla
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add additional meta data to dune.module.
parent
8eafe925
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
19 deletions
+13
-19
dune-alugrid.pc.in
dune-alugrid.pc.in
+2
-2
dune.module
dune.module
+6
-3
package.py
package.py
+0
-11
python/setup.py.in
python/setup.py.in
+5
-3
No files found.
dune-alugrid.pc.in
View file @
b208c091
...
...
@@ -8,8 +8,8 @@ DEPENDENCIES=@REQUIRES@
Name: @PACKAGE_NAME@
Version: @VERSION@
Description:
DUNE Adaptive, Load-balanced, and Unstructured Grid Module
URL:
https://gitlab.dune-project.org/extensions/dune-alugrid
Description:
@DESCRIPTION@
URL:
@URL@
Requires: ${DEPENDENCIES}
Libs: -L${libdir} -ldunealugrid
Cflags: -I${includedir}
dune.module
View file @
b208c091
Module
:
dune
-
alugrid
Version
:
2.8
-
git
Maintainer
:
gitlab
.
dune
-
project
.
org
/
extensions
/
dune
-
alugrid
Whitespace
-
Hook
:
Yes
Author
:
Robert
Kloefkorn
,
Martin
Alkaemper
,
Andreas
Dedner
and
Martin
Nolte
Maintainer
:
dune
-
devel
@
lists
.
dune
-
project
.
org
Description
:
Module
providing
the
DUNE
grid
interface
for
unstructured
simplicial
and
cube
grids
in
2
and
3
space
dimensions
URL
:
https
://
gitlab
.
dune
-
project
.
org
/
extensions
/
dune
-
alugrid
Python
-
Requires
:
Depends
:
dune
-
grid
(
>=
2.8
)
Python
-
Modules
:
dune
.
alugrid
Whitespace
-
Hook
:
Yes
package.py
deleted
100644 → 0
View file @
8eafe925
# Meta data
name
=
"dune-alugrid"
version
=
"2.8"
author
=
"Robert Kloefkorn, Martin Alkaemper, Andreas Dedner and Martin Nolte"
author_email
=
"dune@lists.dune-project.org"
description
=
"Module providing the DUNE grid interface for unstructured simplicial and cube grids in 2 and 3 space dimensions."
url
=
"https://gitlab.dune-project.org/extensions/dune-alugrid"
install_requires
=
[]
# DUNE dependencies
dune_dependencies
=
[
'dune-grid'
]
python/setup.py.in
View file @
b208c091
from setuptools import setup, find_packages
setup(name="
dune.alugrid
",
setup(name="
${DUNE_MOD_NAME}
",
namespace_packages=['dune'],
description="
Python lib for dune: dune-alugrid library
",
description="
${DUNE_ALUGRID_DESCRIPTION}
",
version="${DUNE_ALUGRID_VERSION}",
author="Robert Kloefkorn, Martin Alkaemper, Andreas Dedner and Martin Nolte",
author="${DUNE_ALUGRID_AUTHOR}",
author_email="${DUNE_ALUGRID_AUTHOREMAIL}",
packages = find_packages(),
zip_safe = 0,
package_data = {'': ['*.so']}
install_requires = "${DUNE_ALUGRID_PYTHON_REQUIRES}".split(' ')
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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