Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Arash Partow
waLBerla
Commits
12bd95b7
Commit
12bd95b7
authored
Jul 24, 2020
by
Markus Holzer
Browse files
First version of setup.py file
parent
ffe98bd7
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
12bd95b7
...
...
@@ -70,3 +70,6 @@ CMakeDefs.h
/walberla-config.cmake
/cmake-build-debug/
/cmake-build-release/
# setup.py
python/*.egg-info
python/setup.py
0 → 100644
View file @
12bd95b7
#!/usr/bin/env python
# install package localy with 'pip install -e .'
from
setuptools
import
setup
setup
(
name
=
'pystencils_walberla'
,
version
=
'1.0'
,
description
=
'Python packages for WaLBerla kernel generation'
,
keywords
=
'walberla pystencils lbmpy'
,
author
=
'LSS'
,
author_email
=
'cs10-contact@fau.de'
,
url
=
'https://walberla.net/'
,
packages
=
[
'pystencils_walberla'
,
'lbmpy_walberla'
],
install_requires
=
[
'pystencils'
,
'lbmpy'
,
'sympy>=1.1'
,
'numpy'
,
'jinja2'
],
package_data
=
{
# Include all template files
""
:
[
'.tmpl.*'
],
# Or specifics files:
"hello"
:
[
"*.msg"
],
},
extras_require
=
{
'cpuinfo'
:
[
'py-cpuinfo'
],
},
python_requires
=
'>=3.6'
,
)
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment