Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Markus Holzer
lbmpy
Commits
03b000ca
Commit
03b000ca
authored
Nov 09, 2021
by
Markus Holzer
Browse files
Adapted setup py
parent
602bbbaa
Pipeline
#35491
passed with stages
in 70 minutes and 43 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
03b000ca
...
...
@@ -78,6 +78,7 @@ def get_cmdclass():
return
cmdclass
major_version
=
versioneer
.
get_version
().
split
(
"+"
)[
0
]
setup
(
name
=
'lbmpy'
,
version
=
versioneer
.
get_version
(),
description
=
'Code Generation for Lattice Boltzmann Methods'
,
...
...
@@ -88,9 +89,8 @@ setup(name='lbmpy',
author_email
=
'cs10-codegen@fau.de'
,
url
=
'https://i10git.cs.fau.de/pycodegen/lbmpy/'
,
packages
=
[
'lbmpy'
]
+
[
'lbmpy.'
+
s
for
s
in
find_packages
(
'lbmpy'
)],
install_requires
=
[
'pystencils>=0.4.0'
,
'sympy>=1.5.1,<=1.9'
,
'numpy>=1.11.0'
],
package_data
=
{
'lbmpy'
:
[
'phasefield/simplex_projection.pyx'
,
'phasefield/simplex_projection.c'
]},
install_requires
=
[
f
'pystencils>=0.4.0,<=
{
major_version
}
'
,
'sympy>=1.5.1,<=1.9'
,
'numpy>=1.11.0'
],
package_data
=
{
'lbmpy'
:
[
'phasefield/simplex_projection.pyx'
,
'phasefield/simplex_projection.c'
]},
ext_modules
=
cython_extensions
(
"lbmpy.phasefield.simplex_projection"
),
classifiers
=
[
'Development Status :: 4 - Beta'
,
...
...
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