Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
lbmpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Markus Holzer
lbmpy
Compare revisions
master to install_requires
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
holzer/lbmpy
Select target project
No results found
install_requires
Select Git revision
Swap
Target
pycodegen/lbmpy
Select target project
ravi.k.ayyala/lbmpy
brendan-waters/lbmpy
anirudh.jonnalagadda/lbmpy
jbadwaik/lbmpy
alexander.reinauer/lbmpy
itischler/lbmpy
he66coqe/lbmpy
ev81oxyl/lbmpy
Bindgen/lbmpy
da15siwa/lbmpy
holzer/lbmpy
RudolfWeeber/lbmpy
pycodegen/lbmpy
13 results
master
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
View open merge request
Commits on Source (1)
fix
· fdc0801c
Markus Holzer
authored
2 years ago
fdc0801c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+9
-1
9 additions, 1 deletion
setup.py
with
9 additions
and
1 deletion
setup.py
Edit
View file @
fdc0801c
...
@@ -4,6 +4,7 @@ from setuptools import setup, find_packages
...
@@ -4,6 +4,7 @@ from setuptools import setup, find_packages
import
distutils
import
distutils
from
contextlib
import
redirect_stdout
from
contextlib
import
redirect_stdout
from
importlib
import
import_module
from
importlib
import
import_module
from
warnings
import
warn
import
versioneer
import
versioneer
...
@@ -79,6 +80,13 @@ def get_cmdclass():
...
@@ -79,6 +80,13 @@ def get_cmdclass():
major_version
=
versioneer
.
get_version
().
split
(
"
+
"
)[
0
]
major_version
=
versioneer
.
get_version
().
split
(
"
+
"
)[
0
]
if
major_version
==
"
0
"
:
warn
(
"
Lbmpy will be installed without VCS, thus it is impossible to determine its version.
"
"
This can lead to a faulty python requirements and thus a faulty environment
"
)
pystencils_require
=
f
'
pystencils>=0.4.0
'
else
:
pystencils_require
=
f
'
pystencils>=0.4.0,<=
{
major_version
}
'
setup
(
name
=
'
lbmpy
'
,
setup
(
name
=
'
lbmpy
'
,
version
=
versioneer
.
get_version
(),
version
=
versioneer
.
get_version
(),
description
=
'
Code Generation for Lattice Boltzmann Methods
'
,
description
=
'
Code Generation for Lattice Boltzmann Methods
'
,
...
@@ -89,7 +97,7 @@ setup(name='lbmpy',
...
@@ -89,7 +97,7 @@ setup(name='lbmpy',
author_email
=
'
cs10-codegen@fau.de
'
,
author_email
=
'
cs10-codegen@fau.de
'
,
url
=
'
https://i10git.cs.fau.de/pycodegen/lbmpy/
'
,
url
=
'
https://i10git.cs.fau.de/pycodegen/lbmpy/
'
,
packages
=
[
'
lbmpy
'
]
+
[
'
lbmpy.
'
+
s
for
s
in
find_packages
(
'
lbmpy
'
)],
packages
=
[
'
lbmpy
'
]
+
[
'
lbmpy.
'
+
s
for
s
in
find_packages
(
'
lbmpy
'
)],
install_requires
=
[
f
'
pystencils
>=0.4.0,<=
{
major_version
}
'
,
'
sympy>=1.5.1,<=1.11.1
'
,
'
numpy>=1.11.0
'
],
install_requires
=
[
pystencils
_require
,
'
sympy>=1.5.1,<=1.11.1
'
,
'
numpy>=1.11.0
'
],
package_data
=
{
'
lbmpy
'
:
[
'
phasefield/simplex_projection.pyx
'
,
'
phasefield/simplex_projection.c
'
]},
package_data
=
{
'
lbmpy
'
:
[
'
phasefield/simplex_projection.pyx
'
,
'
phasefield/simplex_projection.c
'
]},
ext_modules
=
cython_extensions
(
"
lbmpy.phasefield.simplex_projection
"
),
ext_modules
=
cython_extensions
(
"
lbmpy.phasefield.simplex_projection
"
),
classifiers
=
[
classifiers
=
[
...
...
This diff is collapsed.
Click to expand it.